Fix for coverity #29377: Properly free memory of 's'
authorTobias Markus <tobbi@mozilla-uk.org>
Sat, 14 Feb 2015 16:41:05 +0000 (17:41 +0100)
committerTobias Markus <tobbi@mozilla-uk.org>
Sat, 14 Feb 2015 16:41:05 +0000 (17:41 +0100)
src/addon/md5.cpp

index 93dd1df..904e656 100644 (file)
@@ -162,7 +162,11 @@ std::string MD5::hex_digest() {
 
   s[32]='\0';
 
-  return s;
+  // Create string from 's'
+  std::string s_str = std::string(s);
+  delete[] s;
+
+  return s_str;
 }
 
 std::ostream& operator<<(std::ostream &stream, MD5 context) {