From: Kenichi Handa Date: Wed, 2 Jul 1997 12:53:50 +0000 (+0000) Subject: (selection_data_to_lisp_data): Call free instead of X-Git-Tag: emacs-20.1~1412 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b58fda2e9697324e53e281911ffac53005fed562;p=emacs.git (selection_data_to_lisp_data): Call free instead of xfree. --- diff --git a/src/xselect.c b/src/xselect.c index 2b5cec02655..81896816b1a 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -1499,7 +1499,7 @@ selection_data_to_lisp_data (display, data, size, type, format) buf = (unsigned char *) xmalloc (bufsize); size = decode_coding (&coding, data, buf, size, bufsize, &dummy); str = make_string ((char *) buf, size); - xfree (buf); + free (buf); } return str; }