diff options
author | Pedro Alves <palves@redhat.com> | 2009-05-29 19:06:12 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-05-29 19:06:12 +0000 |
commit | ab730e720d0430afd030fb178737e15f3190f5dd (patch) | |
tree | b84c8254bcb117892792dc20ed0f98832c8624e7 /gdb | |
parent | eb4ff4d67f23a5572fce03bbf06a7bf34a0b11e6 (diff) | |
download | gdb-ab730e720d0430afd030fb178737e15f3190f5dd.zip gdb-ab730e720d0430afd030fb178737e15f3190f5dd.tar.gz gdb-ab730e720d0430afd030fb178737e15f3190f5dd.tar.bz2 |
* mi/mi-interp.c (mi_on_resume): Initialize `count' to 0.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/mi/mi-interp.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9af938d..b620d98 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-05-29 Pedro Alves <pedro@codesourcery.com> + + * mi/mi-interp.c (mi_on_resume): Initialize `count' to 0. + 2009-05-29 Eli Zaretskii <eliz@gnu.org> * i386-tdep.c (i386_go32_init_abi): Use SVR4 register numbering diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index 0d67161..5ad4a51 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -447,7 +447,7 @@ mi_on_resume (ptid_t ptid) fprintf_unfiltered (raw_stdout, "*running,thread-id=\"all\"\n"); else if (ptid_is_pid (ptid)) { - int count; + int count = 0; /* Backwards compatibility. If there's only one inferior, output "all", otherwise, output each resumed thread |