From: Daniel Jacobowitz Date: Thu, 13 Jul 2006 04:05:54 +0000 (+0000) Subject: * remote.c (unpack_varlen_hex): Correct type of retval. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=63a1cfbdd540ae6af15143ab1c64f9183b896c84;p=pf3gnuchains%2Fpf3gnuchains3x.git * remote.c (unpack_varlen_hex): Correct type of retval. Reported by Zhigang Gong . --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3652bd2099..4cd5bde6aa 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2006-07-12 Daniel Jacobowitz + * remote.c (unpack_varlen_hex): Correct type of retval. + Reported by Zhigang Gong . + +2006-07-12 Daniel Jacobowitz + * dwarf2read.c (dwarf2_symbol_mark_computed): Handle corrupted or missing location list information. Suggested by Jan Kratochvil . diff --git a/gdb/remote.c b/gdb/remote.c index 687a5d8f7e..7b4f55bef7 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -1188,7 +1188,7 @@ unpack_varlen_hex (char *buff, /* packet to parse */ ULONGEST *result) { int nibble; - int retval = 0; + ULONGEST retval = 0; while (ishex (*buff, &nibble)) {