[User32] Add Back Break with Error Message

Add back missing break. See CORE-17856.
This commit is contained in:
James Tabor 2021-11-27 11:35:42 -06:00
parent 1897f9f0c0
commit 9cff384c22

View file

@ -1134,6 +1134,8 @@ LONG_PTR IntGetWindowLong( HWND hwnd, INT offset, UINT size, BOOL unicode )
{ {
SetLastError(ERROR_ACCESS_DENIED); SetLastError(ERROR_ACCESS_DENIED);
retvalue = 0; retvalue = 0;
ERR("Outside Access and Denied!\n");
break;
} }
retvalue = (ULONG_PTR)IntGetWndProc(wndPtr, !unicode); retvalue = (ULONG_PTR)IntGetWndProc(wndPtr, !unicode);
break; break;