summaryrefslogtreecommitdiff
path: root/src/base/remote_gdb.cc
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2014-11-24 09:03:38 -0500
committerAndreas Hansson <andreas.hansson@arm.com>2014-11-24 09:03:38 -0500
commitd66b14ca61bec95a4049e5aae468904395055efd (patch)
tree6ddaf6bd4a792f0fe3125d57dae95fb9099dd7b7 /src/base/remote_gdb.cc
parent1f539f13c32ad5a9187d56a098d4c857639b0e05 (diff)
downloadgem5-d66b14ca61bec95a4049e5aae468904395055efd.tar.xz
misc: Another round of static analysis fixups
Mostly addressing uninitialised members.
Diffstat (limited to 'src/base/remote_gdb.cc')
-rw-r--r--src/base/remote_gdb.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/base/remote_gdb.cc b/src/base/remote_gdb.cc
index 49b7ce50d..ead8db9ae 100644
--- a/src/base/remote_gdb.cc
+++ b/src/base/remote_gdb.cc
@@ -658,12 +658,13 @@ BaseRemoteGDB::trap(int type)
* After the debugger is "active" (connected) it will be
* waiting for a "signaled" message from us.
*/
- if (!active)
+ if (!active) {
active = true;
- else
+ } else {
// Tell remote host that an exception has occurred.
snprintf((char *)buffer, bufferSize, "S%02x", type);
send(buffer);
+ }
// Stick frame regs into our reg cache.
getregs();