Fix typo in test-resizing.c
Check heightp not *heightp before assigning to heightp https://bugzilla.gnome.org/show_bug.cgi?id=602349
This commit is contained in:
parent
7579b691df
commit
01ce961c00
@ -79,7 +79,7 @@ get_size (Display *d, Drawable draw,
|
|||||||
*yp = y;
|
*yp = y;
|
||||||
if (widthp)
|
if (widthp)
|
||||||
*widthp = width;
|
*widthp = width;
|
||||||
if (*heightp)
|
if (heightp)
|
||||||
*heightp = height;
|
*heightp = height;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user