Fixed memory leak in xsettitle().

master
Alexander Sedov 11 years ago committed by Roberto E. Vargas Caballero
parent 86c03ddc82
commit 22eeda56b7
  1. 1
      st.c

@ -3258,6 +3258,7 @@ xsettitle(char *p) {
Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
&prop);
XSetWMName(xw.dpy, xw.win, &prop);
XFree(prop.value);
}
void

Loading…
Cancel
Save