- Fixed an issue with Avira AntiVir Personal, reported by Christoph von Wittich.

- GetLastActivePopup is unimplemented and returns a zero. So User32 locally checks and sees the zero and passes it to win32k for processing. There an (kbug) exception is thrown.


svn path=/trunk/; revision=34274
This commit is contained in:
James Tabor 2008-07-03 07:05:50 +00:00
parent 020dfee9f8
commit 8e5bf80622

View file

@ -3634,6 +3634,8 @@ co_UserSetWindowLong(HWND hWnd, DWORD Index, LONG NewValue, BOOL Ansi)
Wnd = Window->Wnd;
if (!Wnd) return 0; // No go on zero.
if ((INT)Index >= 0)
{
if ((Index + sizeof(LONG)) > Wnd->ExtraDataSize)