diff src/xselect.c @ 18534:cf074bab6a2d

(selection_data_to_lisp_data): Call free instead of xfree.
author Kenichi Handa <handa@m17n.org>
date Wed, 02 Jul 1997 12:53:50 +0000
parents 14058b650d98
children a26b6aca56ca
line wrap: on
line diff
--- 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;
     }