From f94318babc0929cb03c904486b998390b7dc64b8 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 14 Feb 2015 16:23:01 +0100 Subject: x11: fix uninitialized variable reads This line of code ended up in the wrong block in commit cd6dfcbe. (cherry picked from commit f247294d7346306ef9f42a986d693df4743f9152) --- video/out/x11_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/out/x11_common.c b/video/out/x11_common.c index 3dfb6e1218..dcac1788a3 100644 --- a/video/out/x11_common.c +++ b/video/out/x11_common.c @@ -1550,8 +1550,8 @@ static void vo_x11_update_geometry(struct vo *vo) w = h = 0; XTranslateCoordinates(x11->display, win, x11->rootwin, 0, 0, &x, &y, &dummy_win); + x11->winrc = (struct mp_rect){x, y, x + w, y + h}; } - x11->winrc = (struct mp_rect){x, y, x + w, y + h}; double fps = 1000.0; for (int n = 0; n < x11->num_displays; n++) { struct xrandr_display *disp = &x11->displays[n]; -- cgit v1.2.3