From: Dana Jansens Date: Fri, 28 Mar 2003 00:59:09 +0000 (+0000) Subject: free the themename properly X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=ef3f83cadcfd59ecb78a22dca9bcc419928b4bf7;hp=fe2ec0951215f651818efefa2ca27e23e9c30d72;p=chaz%2Fopenbox free the themename properly --- diff --git a/engines/openbox/theme.c b/engines/openbox/theme.c index 8cbab481..c775ff9e 100644 --- a/engines/openbox/theme.c +++ b/engines/openbox/theme.c @@ -156,9 +156,13 @@ gboolean read_mask(XrmDatabase db, char *rname, pixmap_mask **value) if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess) ret = TRUE; else { + char *themename; + g_free(s); + themename = g_path_get_basename(theme.string); s = g_strdup_printf("%s_buttons/%s", theme.string, - g_path_get_basename(theme.string)); + themename); + g_free(themename); if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess) ret = TRUE;