LarsGit223 commented on this pull request.
- 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.