diff options
author | thestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-09-16 01:24:32 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-09-16 01:24:32 +0000 |
commit | fda6a1e6fe15fab9c9be41358cd6e409e8061647 (patch) | |
tree | 7f3bdd47baeed43f88b3f9bb5f664b8bfab18d1d /src/client/linux/handler | |
parent | Import linux_syscall_support.h from linux-syscall-support.googlecode.com inst... (diff) | |
download | breakpad-fda6a1e6fe15fab9c9be41358cd6e409e8061647.tar.xz |
Add a free() to ExceptionHandlerTest.ChildCrash.
Review URL: http://breakpad.appspot.com/193001
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@687 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/linux/handler')
-rw-r--r-- | src/client/linux/handler/exception_handler_unittest.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/linux/handler/exception_handler_unittest.cc b/src/client/linux/handler/exception_handler_unittest.cc index 63351fa5..731207a8 100644 --- a/src/client/linux/handler/exception_handler_unittest.cc +++ b/src/client/linux/handler/exception_handler_unittest.cc @@ -126,6 +126,7 @@ TEST(ExceptionHandlerTest, ChildCrash) { ASSERT_EQ(stat(minidump_filename.c_str(), &st), 0); ASSERT_GT(st.st_size, 0u); unlink(minidump_filename.c_str()); + free(filename); } static const unsigned kControlMsgSize = |