From 79634a6789df2aedf59fb557699277563a8a4268 Mon Sep 17 00:00:00 2001 From: Stuart Reilly Date: Fri, 28 Jun 2019 16:11:33 +0100 Subject: Fix two resource leaks --- src/lib/third_party/src/ht_hash.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib') diff --git a/src/lib/third_party/src/ht_hash.c b/src/lib/third_party/src/ht_hash.c index 4eaac9bcb..ce50f1669 100644 --- a/src/lib/third_party/src/ht_hash.c +++ b/src/lib/third_party/src/ht_hash.c @@ -24,6 +24,7 @@ hashtable_t *ht_create(int size) { /* Allocate pointers to the head nodes. */ if((hashtable->table = ndpi_malloc(sizeof(entry_t *) * size)) == NULL) + free(hashtable); return NULL; else { for(i = 0; i < size; i++) @@ -62,6 +63,7 @@ entry_t *ht_newpair(char *key, u_int16_t value) { return NULL; if((newpair->key = ndpi_strdup(key)) == NULL) + free(newpair); return NULL; newpair->value = value, newpair->next = NULL; -- cgit v1.2.3