diff options
author | Hui Zhu <teawater@gmail.com> | 2008-12-22 10:56:33 +0000 |
---|---|---|
committer | Hui Zhu <teawater@gmail.com> | 2008-12-22 10:56:33 +0000 |
commit | 8586ea6ba99543dc6ad52f1c906ff3890e0914bf (patch) | |
tree | cb8276b0bc5b3a9c76ba7324a76614b3a1e4334b | |
parent | 9c421dc4db41c0d43df4868394aceddb5aa87520 (diff) | |
download | gdb-multiprocess-20081120-branch.zip gdb-multiprocess-20081120-branch.tar.gz gdb-multiprocess-20081120-branch.tar.bz2 |
2008-12-22 Hui Zhu <teawater@gmail.com>multiprocess-20081120-branch
* infcmd.c (focus_command): Fix memory leak.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/infcmd.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4884530..cb87fe8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-12-22 Hui Zhu <teawater@gmail.com> + + * infcmd.c (focus_command): Fix memory leak. + 2008-11-25 Pedro Alves <pedro@codesourcery.com> 2008-11-25 Pedro Alves <pedro@codesourcery.com> diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 96a1164..f2d3708 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -219,6 +219,8 @@ focus_command (char *spec, int from_tty) return; } + if (current_itset) + xfree (current_itset); current_itset = itset; /* For now, set a current exec from the first element of the focus |