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:
Jehan 2021-08-22 12:10:11 +02:00
parent 3fa68be264
commit 38a0b7611c
1 changed files with 3 additions and 0 deletions

View File

@ -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);