diff options
author | Tommi Rantala <tt.rantala@gmail.com> | 2012-09-17 13:27:30 +0300 |
---|---|---|
committer | Tommi Rantala <tt.rantala@gmail.com> | 2012-09-28 14:50:02 +0300 |
commit | 0d7738ed4f7dae1b6b77d1a4dd25c5ea765de81f (patch) | |
tree | 03e17486e5efaba6ca74e7b31f722e05c337875e /tests/test-ptrace.c | |
parent | 438d9de675771faaceaec362fbf4cf37eb06e295 (diff) | |
download | libunwind-0d7738ed4f7dae1b6b77d1a4dd25c5ea765de81f.tar.gz |
Cleanup dynamically allocated memory before exit in tests
Cleanup dynamically allocated memory before exit in tests in a few
places where missing. While such cleanups right before exit do not
usually make much sense (as the operating system would cleanup anyway,
so manual cleanups only burn CPU cycles), we will want to catch any
potential problems in libunwind related to the cleanups. This also stops
valgrind complaining about unreleased memory.
Diffstat (limited to 'tests/test-ptrace.c')
-rw-r--r-- | tests/test-ptrace.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-ptrace.c b/tests/test-ptrace.c index 4708293e..69e18080 100644 --- a/tests/test-ptrace.c +++ b/tests/test-ptrace.c @@ -341,6 +341,7 @@ main (int argc, char **argv) } _UPT_destroy (ui); + unw_destroy_addr_space (as); if (nerrors) { |