[Github-comments] [geany/geany-plugins] Workbench (#598)
LarsGit223
notifications at xxxxx
Sat Aug 19 11:41:54 UTC 2017
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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20170819/9ab1bc21/attachment.html>
More information about the Github-comments
mailing list