XQuartz: pbproxy: fixed blocking
(cherry picked from commit bb330a1b1c480e89727fb75ff5aeb71f4afc5ee3)
This commit is contained in:
parent
c885110aed
commit
b742da0b71
|
@ -252,9 +252,10 @@ get_property(Window win, Atom property, struct propdata *pdata, Bool delete, Ato
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
const char *type = XGetAtomName(x_dpy, a);
|
char *type = XGetAtomName(x_dpy, a);
|
||||||
DB("Unhandled X11 mime type: %s", type);
|
DB("Unhandled X11 mime type: %s", type);
|
||||||
Xfree(type);
|
XFree(type);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*We prefer PNG over strings, and UTF8 over a Latin-1 string.*/
|
/*We prefer PNG over strings, and UTF8 over a Latin-1 string.*/
|
||||||
|
|
Loading…
Reference in New Issue