@LarsGit223 commented on this pull request.


In workbench/src/wb_project.c:

> +
+/* 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, view it on GitHub, or mute the thread.