From 820bf44828745e7d0a7bb0974164acd899c3c113 Mon Sep 17 00:00:00 2001 From: Bert Vermeulen Date: Wed, 11 Dec 2013 16:30:25 +0100 Subject: [PATCH] Clear decoder list after unloading, not just at exit. --- decoder.c | 2 ++ srd.c | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/decoder.c b/decoder.c index af988cb..71f4799 100644 --- a/decoder.c +++ b/decoder.c @@ -601,6 +601,8 @@ SRD_API int srd_decoder_unload_all(void) dec = l->data; srd_decoder_unload(dec); } + g_slist_free(pd_list); + pd_list = NULL; return SRD_OK; } diff --git a/srd.c b/srd.c index 1c7f6f9..76e1b34 100644 --- a/srd.c +++ b/srd.c @@ -194,8 +194,6 @@ SRD_API int srd_exit(void) srd_session_destroy((struct srd_session *)l->data); srd_decoder_unload_all(); - g_slist_free(pd_list); - pd_list = NULL; /* Py_Finalize() returns void, any finalization errors are ignored. */ Py_Finalize(); -- 2.30.2