X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=inline;f=srd.c;h=273b6bce797e2b80b67d782fc97c193238842db7;hb=24ba9e1bdfe107e394176eda3116b714463a8437;hp=535ea122e5b3876d0846e170d5af63a2f6ca746c;hpb=3a063627c5658a65790ff52a9c0ed9a1f660a0fb;p=libsigrokdecode.git diff --git a/srd.c b/srd.c index 535ea12..273b6bc 100644 --- a/srd.c +++ b/srd.c @@ -67,8 +67,8 @@ extern SRD_PRIV int max_session_id; * @section sec_irc IRC * * You can find the sigrok developers in the - * \#sigrok - * IRC channel on Freenode. + * \#sigrok + * IRC channel on Libera.Chat. * * @section sec_website Website * @@ -172,6 +172,7 @@ static int print_searchpaths(void) py_path = PyList_GetItem(py_paths, i); py_bytes = PyUnicode_AsUTF8String(py_path); g_string_append_printf(s, " - %s\n", PyBytes_AsString(py_bytes)); + Py_DECREF(py_bytes); } s->str[s->len - 1] = '\0'; srd_dbg("%s", s->str); @@ -289,6 +290,12 @@ SRD_API int srd_init(const char *path) return SRD_OK; } +static void srd_session_destroy_cb(void *arg, void *ignored) +{ + (void)ignored; // Prevent unused warning + srd_session_destroy((struct srd_session *)arg); +} + /** * Shutdown libsigrokdecode. * @@ -307,8 +314,9 @@ SRD_API int srd_exit(void) { srd_dbg("Exiting libsigrokdecode."); - for (GSList *l = sessions; l; l = l->next) - srd_session_destroy(l->data); + g_slist_foreach(sessions, srd_session_destroy_cb, NULL); + g_slist_free(sessions); + sessions = NULL; srd_decoder_unload_all(); g_slist_free_full(searchpaths, g_free);