diff options
author | Takuto Ikuta <tikuta@chromium.org> | 2018-03-27 16:29:03 +0900 |
---|---|---|
committer | Mark Mentovai <mark@chromium.org> | 2018-03-27 14:57:55 +0000 |
commit | e93f852a3c316ad767381d5e5bc839eba5c6225b (patch) | |
tree | b82742d4c000aa2dfe3fd8af36f46a23a762ca0d /src/common | |
parent | Allow minidump_dump to print module lists that would normally be rejected (diff) | |
download | breakpad-e93f852a3c316ad767381d5e5bc839eba5c6225b.tar.xz |
Add missing header for free function
Change-Id: I8ff2dcb546849493f2883777895341e043e44fb3
Reviewed-on: https://chromium-review.googlesource.com/981965
Reviewed-by: Mark Mentovai <mark@chromium.org>
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/path_helper.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/path_helper.cc b/src/common/path_helper.cc index 60fe34ff..61a6e318 100644 --- a/src/common/path_helper.cc +++ b/src/common/path_helper.cc @@ -31,6 +31,7 @@ #include <assert.h> #include <libgen.h> +#include <stdlib.h> #include <string.h> namespace google_breakpad { |