summaryrefslogtreecommitdiff
path: root/engines/openbox
diff options
context:
space:
mode:
Diffstat (limited to 'engines/openbox')
-rw-r--r--engines/openbox/theme.c6
1 files changed, 5 insertions, 1 deletions
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;