# HG changeset patch # User Kenichi Handa # Date 867848030 0 # Node ID cf074bab6a2dc44784d15d68a368d8b148006a63 # Parent d9160fd77816d051fa8e1d4557a0dcf7d45dcd76 (selection_data_to_lisp_data): Call free instead of xfree. diff -r d9160fd77816 -r cf074bab6a2d src/xselect.c --- a/src/xselect.c Wed Jul 02 06:45:51 1997 +0000 +++ b/src/xselect.c Wed Jul 02 12:53:50 1997 +0000 @@ -1499,7 +1499,7 @@ 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; }