propr = xcb_get_property_reply(conn, cookie, 0);
}
- ret = handler->cb(NULL, conn, state, window, atom, propr);
- FREE(propr);
- return ret;
+ /* the handler will free() the reply */
+ return handler->cb(NULL, conn, state, window, atom, propr);
}
/*
return;
run_assignments(win);
+
+ free(prop);
}
/*
return;
run_assignments(win);
+
+ free(prop);
}
/*
return;
run_assignments(win);
+
+ free(prop);
}
/*
DLOG("Client leader changed to %08x\n", *leader);
win->leader = *leader;
+
+ free(prop);
}
/*
DLOG("Transient for changed to %08x\n", transient_for);
win->transient_for = transient_for;
+
+ free(prop);
}
/*
strut[0], strut[1], strut[2], strut[3]);
win->reserved = (struct reservedpx){ strut[0], strut[1], strut[2], strut[3] };
+
+ free(prop);
}