1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-25 14:01:33 -08:00

(selection_data_to_lisp_data): Call free instead of

xfree.
This commit is contained in:
Kenichi Handa 1997-07-02 12:53:50 +00:00
parent 24127cf7ec
commit b58fda2e96

View file

@ -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;
}