Bugfix: Free()d wrong variable

This commit is contained in:
Michael Stapelberg 2009-02-25 17:35:33 +01:00
parent 0edc523885
commit cb71af7dc2
1 changed files with 1 additions and 1 deletions

View File

@ -132,5 +132,5 @@ void initialize_xinerama(xcb_connection_t *conn) {
s->rect.x, s->rect.y, s->rect.width, s->rect.height); s->rect.x, s->rect.y, s->rect.width, s->rect.height);
} }
free(screen_info); free(reply);
} }