@LarsGit223 commented on this pull request.


In workbench/src/wb_project.c:

> +	g_free(locale_path);
+
+	return list;
+}
+
+
+/* Create a new project dir with base path "utf8_base_dir" */
+static WB_PROJECT_DIR *wb_project_dir_new(const gchar *utf8_base_dir)
+{
+	guint offset;
+
+	if (utf8_base_dir == NULL)
+	{
+	    return NULL;
+	}
+	WB_PROJECT_DIR *dir = (WB_PROJECT_DIR *) g_new0(WB_PROJECT_DIR, 1);

Removed it.


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