projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24127cf
)
(selection_data_to_lisp_data): Call free instead of
author
Kenichi Handa
<handa@m17n.org>
Wed, 2 Jul 1997 12:53:50 +0000
(12:53 +0000)
committer
Kenichi Handa
<handa@m17n.org>
Wed, 2 Jul 1997 12:53:50 +0000
(12:53 +0000)
xfree.
src/xselect.c
patch
|
blob
|
history
diff --git
a/src/xselect.c
b/src/xselect.c
index 2b5cec026557dfd9165b8d78e79c3e9cf6c76ca4..81896816b1a6420aeacbf56973168b3f45a4d48c 100644
(file)
--- 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);
-
x
free (buf);
+ free (buf);
}
return str;
}