From f1bdc70a48615a3640c2f3b1ebf8f7d2ea5bf3d2 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Tue, 17 Jan 2017 07:49:38 +0000 Subject: [PATCH] - gdb_stub: fixed memory reads git-svn-id: http://moon:8086/svn/mips@92 a8ebac50-d88d-4704-bea3-6648445a41b3 --- src/libsys/gdb_stub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsys/gdb_stub.c b/src/libsys/gdb_stub.c index 2d6a48a..42e4ece 100644 --- a/src/libsys/gdb_stub.c +++ b/src/libsys/gdb_stub.c @@ -384,7 +384,7 @@ static int hexToInt(char **ptr, unsigned long *intValue) { unsigned long numChars = 0; - unsigned long hexValue; + int hexValue; *intValue = 0;