@LarsGit223 commented on this pull request.


In workbench/src/workbench.c:

> +			}
+		}
+	}
+	return NULL;
+}
+
+
+/* Add a workbench bookmark */
+static gboolean workbench_add_bookmark_int(WORKBENCH *wb, gchar *filename)
+{
+	if (wb != NULL)
+	{
+		gchar *new;
+
+		new = g_strdup(filename);
+		if (new != NULL)

Ok, fixed. Also, if filename is NULL the function now also returns with FALSE immediately.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.