diff options
| author | Kenichi Handa | 1998-07-21 01:42:40 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-07-21 01:42:40 +0000 |
| commit | 360fbb8e498da7bafa5a155cbb2df05b4c170716 (patch) | |
| tree | 7cc302a63047c0f83e0cb49696ed985203d725b3 | |
| parent | 85ef85ae0adef5d6b74d806bbe0fb1b3d13715ed (diff) | |
| download | emacs-360fbb8e498da7bafa5a155cbb2df05b4c170716.tar.gz emacs-360fbb8e498da7bafa5a155cbb2df05b4c170716.zip | |
(Fcall_process): Use alloca instead of
get_conversion_buffer.
| -rw-r--r-- | src/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 676 | else | 676 | else |
| 677 | { /* We have to decode the input. */ | 677 | { /* We have to decode the input. */ |
| 678 | int size = decoding_buffer_size (&process_coding, nread); | 678 | int size = decoding_buffer_size (&process_coding, nread); |
| 679 | char *decoding_buf = get_conversion_buffer (size); | 679 | char *decoding_buf = (char *) alloca (size); |
| 680 | 680 | ||
| 681 | decode_coding (&process_coding, bufptr, decoding_buf, | 681 | decode_coding (&process_coding, bufptr, decoding_buf, |
| 682 | nread, size); | 682 | nread, size); |