From b58fda2e9697324e53e281911ffac53005fed562 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 2 Jul 1997 12:53:50 +0000 Subject: [PATCH] (selection_data_to_lisp_data): Call free instead of xfree. --- src/xselect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2