From: Michael Stapelberg Date: Wed, 25 Feb 2009 16:35:33 +0000 (+0100) Subject: Bugfix: Free()d wrong variable X-Git-Tag: 3.a~150 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cb71af7dc251599551c13e721a2a24eff429c001;p=i3%2Fi3 Bugfix: Free()d wrong variable --- diff --git a/src/xinerama.c b/src/xinerama.c index b7c931fe..56e6f526 100644 --- a/src/xinerama.c +++ b/src/xinerama.c @@ -132,5 +132,5 @@ void initialize_xinerama(xcb_connection_t *conn) { s->rect.x, s->rect.y, s->rect.width, s->rect.height); } - free(screen_info); + free(reply); }