mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[USER32_APITEST] Follow-up of c39bf0d
Avoid buffer overflow. CORE-15289, CORE-11700
This commit is contained in:
parent
c39bf0d54b
commit
7c14c0ed73
1 changed files with 6 additions and 3 deletions
|
@ -182,7 +182,8 @@ EditWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
MD_msgdump(hwnd, uMsg, wParam, lParam);
|
||||
|
||||
/* Add message */
|
||||
s_Msgs[s_cMsgs++] = msg;
|
||||
if (s_cMsgs < MAX_MSGS)
|
||||
s_Msgs[s_cMsgs++] = msg;
|
||||
|
||||
/* Do inner task */
|
||||
ret = CallWindowProc(s_fnOldEditWndProc, hwnd, uMsg, wParam, lParam);
|
||||
|
@ -207,7 +208,8 @@ ImeWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
MD_msgdump(hwnd, uMsg, wParam, lParam);
|
||||
|
||||
/* Add message */
|
||||
s_Msgs[s_cMsgs++] = msg;
|
||||
if (s_cMsgs < MAX_MSGS)
|
||||
s_Msgs[s_cMsgs++] = msg;
|
||||
|
||||
/* Do inner task */
|
||||
ret = CallWindowProc(s_fnOldImeWndProc, hwnd, uMsg, wParam, lParam);
|
||||
|
@ -287,7 +289,8 @@ WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
MD_msgdump(hwnd, uMsg, wParam, lParam);
|
||||
|
||||
/* Add message */
|
||||
s_Msgs[s_cMsgs++] = msg;
|
||||
if (s_cMsgs < MAX_MSGS)
|
||||
s_Msgs[s_cMsgs++] = msg;
|
||||
|
||||
/* Do inner task */
|
||||
ret = InnerWindowProc(hwnd, uMsg, wParam, lParam);
|
||||
|
|
Loading…
Reference in a new issue