diff options
author | David Barksdale <amatus@amat.us> | 2017-10-09 16:10:52 -0500 |
---|---|---|
committer | David Barksdale <amatus@amat.us> | 2017-10-09 16:10:52 -0500 |
commit | 9885d037e3a8a1e605d3f18732ec3719a725d85a (patch) | |
tree | 259de7dd092d30277b48449ea8c55dec92fd0773 | |
parent | 704722e37ac066bf1f304c93ecf198cbf7fd26be (diff) |
Fix memory leak in transport-testing
-rw-r--r-- | src/transport/transport-testing.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/transport/transport-testing.c b/src/transport/transport-testing.c index 918d70a9d..68cda3bd7 100644 --- a/src/transport/transport-testing.c +++ b/src/transport/transport-testing.c @@ -678,6 +678,11 @@ GNUNET_TRANSPORT_TESTING_stop_peer (struct GNUNET_TRANSPORT_TESTING_PeerContext GNUNET_CONFIGURATION_destroy (p->cfg); p->cfg = NULL; } + if (NULL != p->handlers) + { + GNUNET_free (p->handlers); + p->handlers = NULL; + } GNUNET_CONTAINER_DLL_remove (tth->p_head, tth->p_tail, p); |