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;
|
||||
if (widthp)
|
||||
*widthp = width;
|
||||
if (*heightp)
|
||||
if (heightp)
|
||||
*heightp = height;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user