summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-19 17:44:21 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-19 17:44:21 +0000
commit76ba958178ab1cf4cf159c6f95006a4f175baf6c (patch)
treefdff1f08a5ac2ffce4ea6e732088d53c2c6c0c24
parentc683d70bd84038b315fe578986b7918ae9b36b6b (diff)
downloademacs-20.3.tar.gz
(Fcall_process): Use malloc for decoding_buf.emacs-20.3
-rw-r--r--src/callproc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 6a1cfbc2c46..f30087d09e4 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -677,7 +677,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 = (char *) alloca (size);
+ char *decoding_buf = (char *) malloc (size);
decode_coding (&process_coding, bufptr, decoding_buf,
nread, size);
@@ -689,6 +689,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
there's a possibility that the detection was
done by insufficient data. So, we give up
displaying on the fly. */
+ free (decoding_buf);
display_on_the_fly = 0;
process_coding = saved_coding;
carryover = nread;
@@ -696,6 +697,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
}
if (process_coding.produced > 0)
insert (decoding_buf, process_coding.produced);
+ free (decoding_buf);
carryover = nread - process_coding.consumed;
if (carryover > 0)
{