mirror of https://github.com/GNOME/gimp.git
Added a g_strdup() on DEFAULT_IMAGE_TITLE_FORMAT, otherwise it would try
1999-03-04 Tomas Ogren <stric@ing.umu.se> * app/gimprc.c: Added a g_strdup() on DEFAULT_IMAGE_TITLE_FORMAT, otherwise it would try to free a constant string when cancling out of prefs or changing the title-style.
This commit is contained in:
parent
77f4d4abec
commit
7356625455
|
@ -1,3 +1,9 @@
|
||||||
|
1999-03-04 Tomas Ogren <stric@ing.umu.se>
|
||||||
|
|
||||||
|
* app/gimprc.c: Added a g_strdup() on DEFAULT_IMAGE_TITLE_FORMAT,
|
||||||
|
otherwise it would try to free a constant string when cancling out of
|
||||||
|
prefs or changing the title-style.
|
||||||
|
|
||||||
Wed Mar 3 18:38:31 MET 1999 Sven Neumann <sven@gimp.org>
|
Wed Mar 3 18:38:31 MET 1999 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
More unit/resolution stuff (most of it from Michael).
|
More unit/resolution stuff (most of it from Michael).
|
||||||
|
|
|
@ -380,7 +380,7 @@ parse_gimprc ()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!image_title_format)
|
if (!image_title_format)
|
||||||
image_title_format = DEFAULT_IMAGE_TITLE_FORMAT;
|
image_title_format = g_strdup(DEFAULT_IMAGE_TITLE_FORMAT);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue