mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
buffers are calculated properly, no need to allocate more memory for safety anymore
svn path=/trunk/; revision=11700
This commit is contained in:
parent
35ab538802
commit
b260dfd4b0
1 changed files with 3 additions and 10 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: messagebox.c,v 1.28 2004/10/07 19:20:57 gvg Exp $
|
||||
/* $Id: messagebox.c,v 1.29 2004/11/19 19:34:11 weiden Exp $
|
||||
*
|
||||
* PROJECT: ReactOS user32.dll
|
||||
* FILE: lib/user32/windows/messagebox.c
|
||||
|
@ -201,7 +201,6 @@ static INT_PTR CALLBACK MessageBoxProc( HWND hwnd, UINT message,
|
|||
return 0;
|
||||
}
|
||||
|
||||
#define SAFETY_MARGIN 32 /* Extra number of bytes to allocate in case we counted wrong */
|
||||
static int
|
||||
MessageBoxTimeoutIndirectW(
|
||||
CONST MSGBOXPARAMSW *lpMsgBoxParams, UINT Timeout)
|
||||
|
@ -390,8 +389,7 @@ MessageBoxTimeoutIndirectW(
|
|||
(wcslen(ButtonText[i]) + 1) * sizeof(WCHAR);
|
||||
}
|
||||
|
||||
buf = RtlAllocateHeap(GetProcessHeap(), 0, bufsize + SAFETY_MARGIN);
|
||||
/* Just to be safe.... */
|
||||
buf = RtlAllocateHeap(GetProcessHeap(), 0, bufsize);
|
||||
if(!buf)
|
||||
{
|
||||
return 0;
|
||||
|
@ -414,7 +412,7 @@ MessageBoxTimeoutIndirectW(
|
|||
tpl->dwExtendedStyle |= WS_EX_RIGHT;
|
||||
tpl->x = 100;
|
||||
tpl->y = 100;
|
||||
tpl->cdit = nButtons + (Icon != (HICON)0) + 1;
|
||||
tpl->cdit = nButtons + ((Icon != (HICON)0) ? 1 : 0) + 1;
|
||||
|
||||
dest = (BYTE *)(tpl + 1);
|
||||
|
||||
|
@ -506,11 +504,6 @@ MessageBoxTimeoutIndirectW(
|
|||
btnsize.cx = max(btnsize.cx, btnrect.right);
|
||||
btnsize.cy = max(btnsize.cy, btnrect.bottom);
|
||||
}
|
||||
|
||||
if ((ULONG_PTR) dest != ((ULONG_PTR) buf + (ULONG_PTR) bufsize))
|
||||
{
|
||||
DbgPrint("Tell GvG he can't count: bufsize is %lu, but should be %lu\n", bufsize, (ULONG_PTR) dest - (ULONG_PTR) buf);
|
||||
}
|
||||
|
||||
/* make first button the default button if no other is */
|
||||
if(!defbtn)
|
||||
|
|
Loading…
Reference in a new issue