diff options
author | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2013-01-18 13:51:05 +0000 |
---|---|---|
committer | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2013-01-18 13:51:05 +0000 |
commit | e086f8a9c8f6d9215d831f1ff3bd4ff9d3c50ba6 (patch) | |
tree | e7e1f13625345fb4aea0ed96442eb63e3ce81f2c /src/common | |
parent | Fix a couple of warnings in stack_frame_symbolizer code (diff) | |
download | breakpad-e086f8a9c8f6d9215d831f1ff3bd4ff9d3c50ba6.tar.xz |
Don't make MmapWrapper's destructor assert
R=mark at https://breakpad.appspot.com/511002/
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1098 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/linux/dump_symbols.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/linux/dump_symbols.cc b/src/common/linux/dump_symbols.cc index 8ed78a87..f3c6d9b1 100644 --- a/src/common/linux/dump_symbols.cc +++ b/src/common/linux/dump_symbols.cc @@ -115,7 +115,6 @@ class MmapWrapper { public: MmapWrapper() : is_set_(false) {} ~MmapWrapper() { - assert(is_set_); if (base_ != NULL) { assert(size_ > 0); munmap(base_, size_); |