freebsd-ports/x11/XFree86-4-libraries/files/patch-lcPrTxt.c
Eric Anholt e5aa7d1091 Fix a memory leak in libX11.
Obtained from:	RedHat
2003-04-26 08:00:21 +00:00

10 lines
344 B
C

--- lib/X11/lcPrTxt.c.orig Mon Jun 3 15:36:00 2002
+++ lib/X11/lcPrTxt.c Mon Apr 21 23:38:30 2003
@@ -154,7 +154,6 @@
buf_len = text_prop->nitems * 6 + 1;
else
buf_len = text_prop->nitems * XLC_PUBLIC(lcd, mb_cur_max) + 1;
- buf = (XPointer) Xmalloc(buf_len);
}
buf = (XPointer) Xmalloc(buf_len);
if (buf == NULL)