Mercurial > emacs
changeset 22792:19ed63955546
(Fcall_process): Use alloca instead of
get_conversion_buffer.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 21 Jul 1998 01:42:40 +0000 |
parents | c796882abd44 |
children | c3ab1de66dfc |
files | src/callproc.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callproc.c Tue Jul 21 01:42:40 1998 +0000 +++ b/src/callproc.c Tue Jul 21 01:42:40 1998 +0000 @@ -676,7 +676,7 @@ else { /* We have to decode the input. */ int size = decoding_buffer_size (&process_coding, nread); - char *decoding_buf = get_conversion_buffer (size); + char *decoding_buf = (char *) alloca (size); decode_coding (&process_coding, bufptr, decoding_buf, nread, size);