Skip to content

Commit 9cff384

Browse files
committed
[User32] Add Back Break with Error Message
Add back missing break. See CORE-17856.
1 parent 1897f9f commit 9cff384

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

win32ss/user/user32/windows/class.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,6 +1134,8 @@ LONG_PTR IntGetWindowLong( HWND hwnd, INT offset, UINT size, BOOL unicode )
11341134
{
11351135
SetLastError(ERROR_ACCESS_DENIED);
11361136
retvalue = 0;
1137+
ERR("Outside Access and Denied!\n");
1138+
break;
11371139
}
11381140
retvalue = (ULONG_PTR)IntGetWndProc(wndPtr, !unicode);
11391141
break;

0 commit comments

Comments
 (0)