mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
* 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:
parent
e7579b60ca
commit
2c15ef432f
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user