mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
[User32]
- Patch by Roman Pi?l : Fix buffer overflow in EDIT_EM_ReplaceSel(). svn path=/trunk/; revision=73470
This commit is contained in:
@@ -2644,7 +2644,7 @@ static void EDIT_EM_ReplaceSel(EDITSTATE *es, BOOL can_undo, LPCWSTR lpsz_replac
|
||||
if (es->buffer_limit < (tl - (e-s)))
|
||||
strl = 0;
|
||||
else
|
||||
strl = es->buffer_limit - (tl - (e-s));
|
||||
strl = min(strl, es->buffer_limit - (tl - (e-s)));
|
||||
}
|
||||
|
||||
if (!EDIT_MakeFit(es, tl - (e - s) + strl))
|
||||
|
||||
Reference in New Issue
Block a user