* windows-nat.c (handle_output_debug_string): Change type of n to

SIZE_T to avoid crash on 64 bit systems.
This commit is contained in:
Corinna Vinschen 2013-03-19 15:06:26 +00:00
parent e7579b60ca
commit 2c15ef432f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-03-19 Corinna Vinschen <vinschen@redhat.com>
* windows-nat.c (handle_output_debug_string): Change type of n to
SIZE_T to avoid crash on 64 bit systems.
2013-03-17 Eli Zaretskii <eliz@gnu.org>
* python/python-internal.h (HAVE_SNPRINTF)

View File

@ -973,7 +973,7 @@ handle_output_debug_string (struct target_waitstatus *ourstatus)
if (gotasig)
{
LPCVOID x;
DWORD n;
SIZE_T n;
ourstatus->kind = TARGET_WAITKIND_STOPPED;
retval = strtoul (p, &p, 0);
if (!retval)