aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/messenger_api_handle.c
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2021-11-22 15:58:34 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2021-11-22 15:58:34 +0100
commit04833271d9b76ef7d4719827ca4843a611a48208 (patch)
tree77147c4979f398f70397c6dd93e1ade770097b7d /src/messenger/messenger_api_handle.c
parentb57f92ee938794a862c93c3dcc5cd47f061c4cb4 (diff)
downloadgnunet-04833271d9b76ef7d4719827ca4843a611a48208.tar.gz
gnunet-04833271d9b76ef7d4719827ca4843a611a48208.zip
-fixes two memory leaks
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'src/messenger/messenger_api_handle.c')
-rw-r--r--src/messenger/messenger_api_handle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messenger/messenger_api_handle.c b/src/messenger/messenger_api_handle.c
index 516807e13..242389040 100644
--- a/src/messenger/messenger_api_handle.c
+++ b/src/messenger/messenger_api_handle.c
@@ -98,7 +98,7 @@ destroy_handle (struct GNUNET_MESSENGER_Handle *handle)
98 98
99 clear_contact_store(get_handle_contact_store(handle)); 99 clear_contact_store(get_handle_contact_store(handle));
100 100
101 GNUNET_free(handle->name); 101 GNUNET_free(handle);
102} 102}
103 103
104void 104void