fix crash caused by free of uninitialized pointer

This commit is contained in:
mæp 2014-08-06 20:42:57 +02:00
parent 4f9050f53f
commit 72301f9177
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ isdamagenotify(session_t *ps, const XEvent *ev) {
*/
static inline XTextProperty *
make_text_prop(session_t *ps, char *str) {
XTextProperty *pprop = cmalloc(1, XTextProperty);
XTextProperty *pprop = ccalloc(1, XTextProperty);
if (XmbTextListToTextProperty(ps->dpy, &str, 1, XStringStyle, pprop)) {
cxfree(pprop->value);