summaryrefslogtreecommitdiffstats
path: root/linux.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2012-10-07 20:55:38 +0900
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-10-07 20:57:24 +0900
commit1a6cf2f1282e4acc6999eff23e828c2009dbdd04 (patch)
tree2532eb8c6b034f79a8a65c7f0dd0716abb8d0fd4 /linux.c
parentb4c11a7ed3806c7ac30666676ffe5640d6c07bca (diff)
downloadsubsurface-1a6cf2f1282e4acc6999eff23e828c2009dbdd04.tar.gz
Fix potential crash when attempting to free default font
Before setting a new font we try to free the existing font. Sadly if no config value is set for the default font, we assign a string literal. Which of course means that subsurface dumps core when trying to free it. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'linux.c')
-rw-r--r--linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux.c b/linux.c
index 4e7e61c7c..f60f9179c 100644
--- a/linux.c
+++ b/linux.c
@@ -88,7 +88,7 @@ void subsurface_ui_setup(GtkSettings *settings, GtkWidget *menubar,
GtkWidget *vbox, GtkUIManager *ui_manager)
{
if (!divelist_font)
- divelist_font = DIVELIST_DEFAULT_FONT;
+ divelist_font = strdup(DIVELIST_DEFAULT_FONT);
gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
}