9 Aug
2021
9 Aug
'21
10:03 p.m.
August 9, 2021 4:55 PM, "Fabian Maurer" <dark.shadow4(a)web.de> wrote:
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 9867e319d58..5ea05b156d6 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -5991,6 +5991,9 @@ static void test_setwindowpos(void) expect(winY, rc.bottom);
DestroyWindow(hwnd); + + /* Test invalid text with WM_SETTEXT. This must not crash. */ + SendMessageA(GetDesktopWindow(), WM_SETTEXT, 0, (LPARAM)55);
That looks like the wrong place for that. From a botched merge, perhaps? Chip