LarsGit223 commented on this pull request.


> +
+/* Clear idle queue */
+static void wb_project_clear_idle_queue(GSList **queue)
+{
+       GSList *elem;
+
+       if (queue == NULL || *queue == NULL)
+       {
+               return;
+       }
+
+       foreach_slist(elem, *queue)
+       {
+               g_free(elem->data);
+       }
+       g_slist_free(*queue);

Thanks, changed.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/598#discussion_r134089917

Reply via email to