Browse Source

Fix memory leak found in CID #1405876.

Alexander Færøy 7 years ago
parent
commit
60e97953ef
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/or/directory.c

+ 1 - 0
src/or/directory.c

@@ -3627,6 +3627,7 @@ parse_or_diff_from_header(smartlist_t **digests_out, const char *headers)
   } SMARTLIST_FOREACH_END(hex);
   SMARTLIST_FOREACH(hex_digests, char *, cp, tor_free(cp));
   smartlist_free(hex_digests);
+  tor_free(hdr);
   return 0;
 }