diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-13 11:17:02 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-13 11:17:02 +0000 |
| commit | 1890e3b0e7562a8597f9f9b54744519306858a06 (patch) | |
| tree | 390d6b24d049560ce2cfbe6270d74fa523fc33cd | |
| parent | eb6a2e9c4b334f53d714a2e7f10f73c63c3d2edd (diff) | |
fix 1 crash.
| -rw-r--r-- | openbox/screen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/openbox/screen.c b/openbox/screen.c index 0563148e..24fa84ed 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -1098,8 +1098,7 @@ void screen_install_colormap(ObClient *client, gboolean install) monitor_area[i].x, monitor_area[i].width)) #define RESET_STRUT_LIST(sl) \ - {for (i = 0; sl[i]; ++i) \ - g_slist_free(sl[i]); \ + {if (sl) for (i = 0; sl[i]; ++i) g_slist_free(sl[i]); \ sl = g_renew(GSList*, sl, screen_num_desktops + 1); \ sl[screen_num_desktops] = NULL;} /* null terminated */ |
