mirror of
https://github.com/reactos/wine.git
synced 2025-02-21 13:23:25 +00:00
shell32: Add a note about a possible crash on NULL input.
This commit is contained in:
parent
53ae4e2ba0
commit
6a0bdddfc4
@ -59,6 +59,11 @@ static IAutoComplete *test_init(void)
|
||||
}
|
||||
ok(SUCCEEDED(r), "no IID_IACList (0x%08x)\n", r);
|
||||
|
||||
if (0)
|
||||
{
|
||||
/* crashes on native */
|
||||
r = IAutoComplete_Init(ac, hEdit, NULL, NULL, NULL);
|
||||
}
|
||||
/* bind to edit control */
|
||||
r = IAutoComplete_Init(ac, hEdit, acSource, NULL, NULL);
|
||||
ok(SUCCEEDED(r), "Init failed (0x%08x)\n", r);
|
||||
|
Loading…
x
Reference in New Issue
Block a user