explorerframe/tests: Initialize hit test point before first use (Valgrind).

This commit is contained in:
Nikolay Sivov 2011-01-29 11:26:59 +03:00 committed by Alexandre Julliard
parent 0edfb1b4a0
commit 5f26248a39
1 changed files with 1 additions and 1 deletions

View File

@ -1611,6 +1611,7 @@ static void test_basics(void)
ok(hr == E_POINTER, "Got 0x%08x\n", hr);
psi = (void*)0xdeadbeef;
pt.x = pt.y = 0;
hr = INameSpaceTreeControl_HitTest(pnstc, &pt, &psi);
ok(hr == S_FALSE, "Got 0x%08x\n", hr);
ok(psi == NULL, "Got psi %p\n", psi);
@ -1621,7 +1622,6 @@ static void test_basics(void)
ok(hr == S_OK, "Got 0x%08x\n", hr);
process_msgs();
pt.x = pt.y = 0;
hr = INameSpaceTreeControl_HitTest(pnstc, &pt, &psi);
ok(hr == S_OK, "Got 0x%08x\n", hr);
if(SUCCEEDED(hr))