mirror of https://github.com/GNOME/gimp.git
app: free mypaint_brush_path, mypaint_brush_path_writable and…
… default_mypaint_brush in gimp_core_config_finalize(). As reported by Massimo.
This commit is contained in:
parent
3fa68be264
commit
38a0b7611c
|
@ -877,6 +877,8 @@ gimp_core_config_finalize (GObject *object)
|
|||
g_free (core_config->brush_path_writable);
|
||||
g_free (core_config->dynamics_path);
|
||||
g_free (core_config->dynamics_path_writable);
|
||||
g_free (core_config->mypaint_brush_path);
|
||||
g_free (core_config->mypaint_brush_path_writable);
|
||||
g_free (core_config->pattern_path);
|
||||
g_free (core_config->pattern_path_writable);
|
||||
g_free (core_config->palette_path);
|
||||
|
@ -889,6 +891,7 @@ gimp_core_config_finalize (GObject *object)
|
|||
g_free (core_config->font_path_writable);
|
||||
g_free (core_config->default_brush);
|
||||
g_free (core_config->default_dynamics);
|
||||
g_free (core_config->default_mypaint_brush);
|
||||
g_free (core_config->default_pattern);
|
||||
g_free (core_config->default_palette);
|
||||
g_free (core_config->default_gradient);
|
||||
|
|
Loading…
Reference in New Issue