]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/ChangeLog
Fix memory leak in list_available_thread_groups
authorSimon Marchi <simon.marchi@ericsson.com>
Fri, 24 Nov 2017 02:56:19 +0000 (21:56 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Fri, 24 Nov 2017 02:56:19 +0000 (21:56 -0500)
commit00ea2e2ad34edd202f58d9a1eea2081f0905f9f2
tree5a412c2ee4cf32b2a409559efb215943aa7d997b
parent7e8006d14c544a069619dc2bb2c9d2d2b7fd99a6
Fix memory leak in list_available_thread_groups

Commit

  C++ify osdata
  479f8de1b3b7e69ca8d557bbe9d843c7d1bc89c5

introduced a memory leak.  We allocate std::vectors and insert them in a
map, but never free them.  Instead, the map value type can be
std::vector objects directly.

gdb/ChangeLog:

* mi/mi-main.c (list_available_thread_groups): Change map value
type to std::vector.
gdb/ChangeLog
gdb/mi/mi-main.c