X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fpopup.c;fp=openbox%2Fpopup.c;h=15d1bf52bed291cb342b3ffee40263003e407468;hb=1d9991a0cd9b04dfa96a19bc73b40f01651de478;hp=283348e7cbd3b2ef058c2c6262261e5a38a0a47f;hpb=3febcbb9ae6a31edbd64a86f0045148bb052fcff;p=chaz%2Fopenbox diff --git a/openbox/popup.c b/openbox/popup.c index 283348e7..15d1bf52 100644 --- a/openbox/popup.c +++ b/openbox/popup.c @@ -257,6 +257,8 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text) x=MAX(MIN(x, area->x+area->width-w),area->x); y=MAX(MIN(y, area->y+area->height-h),area->y); + g_free(area); + if (m == screen_num_monitors) { RECT_SET(mon, x, y, w, h); m = screen_find_monitor(&mon); @@ -266,6 +268,8 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text) x=MAX(MIN(x, area->x+area->width-w),area->x); y=MAX(MIN(y, area->y+area->height-h),area->y); + + g_free(area); } /* set the windows/appearances up */ @@ -301,8 +305,6 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text) popup_show_timeout(self); } } - - g_free(area); } void popup_hide(ObPopup *self)