From: Kenichi Handa Date: Tue, 21 Jul 1998 01:42:40 +0000 (+0000) Subject: (Fcall_process): Use alloca instead of X-Git-Tag: emacs-20.3~287 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=360fbb8e498da7bafa5a155cbb2df05b4c170716;p=emacs.git (Fcall_process): Use alloca instead of get_conversion_buffer. --- diff --git a/src/callproc.c b/src/callproc.c index cbc58c01cfa..7035aed4f50 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -676,7 +676,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") 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);