diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c index a251e08a4db..3f329872c76 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -3316,7 +3316,7 @@ usage: (make-network-process &rest ARGS) */) | |||
| 3316 | { | 3316 | { |
| 3317 | if (datagram_address[s].sa) | 3317 | if (datagram_address[s].sa) |
| 3318 | abort (); | 3318 | abort (); |
| 3319 | datagram_address[s].sa = (struct sockaddr *) xmalloc (lres->ai_addrlen); | 3319 | datagram_address[s].sa = xmalloc (lres->ai_addrlen); |
| 3320 | datagram_address[s].len = lres->ai_addrlen; | 3320 | datagram_address[s].len = lres->ai_addrlen; |
| 3321 | if (is_server) | 3321 | if (is_server) |
| 3322 | { | 3322 | { |
| @@ -6286,7 +6286,7 @@ process has been transmitted to the serial port. */) | |||
| 6286 | 6286 | ||
| 6287 | if (!proc_encode_coding_system[new_outfd]) | 6287 | if (!proc_encode_coding_system[new_outfd]) |
| 6288 | proc_encode_coding_system[new_outfd] | 6288 | proc_encode_coding_system[new_outfd] |
| 6289 | = (struct coding_system *) xmalloc (sizeof (struct coding_system)); | 6289 | = xmalloc (sizeof (struct coding_system)); |
| 6290 | memcpy (proc_encode_coding_system[new_outfd], | 6290 | memcpy (proc_encode_coding_system[new_outfd], |
| 6291 | proc_encode_coding_system[old_outfd], | 6291 | proc_encode_coding_system[old_outfd], |
| 6292 | sizeof (struct coding_system)); | 6292 | sizeof (struct coding_system)); |
| @@ -7084,7 +7084,7 @@ setup_process_coding_systems (Lisp_Object process) | |||
| 7084 | 7084 | ||
| 7085 | if (!proc_decode_coding_system[inch]) | 7085 | if (!proc_decode_coding_system[inch]) |
| 7086 | proc_decode_coding_system[inch] | 7086 | proc_decode_coding_system[inch] |
| 7087 | = (struct coding_system *) xmalloc (sizeof (struct coding_system)); | 7087 | = xmalloc (sizeof (struct coding_system)); |
| 7088 | coding_system = p->decode_coding_system; | 7088 | coding_system = p->decode_coding_system; |
| 7089 | if (! NILP (p->filter)) | 7089 | if (! NILP (p->filter)) |
| 7090 | ; | 7090 | ; |
| @@ -7097,7 +7097,7 @@ setup_process_coding_systems (Lisp_Object process) | |||
| 7097 | 7097 | ||
| 7098 | if (!proc_encode_coding_system[outch]) | 7098 | if (!proc_encode_coding_system[outch]) |
| 7099 | proc_encode_coding_system[outch] | 7099 | proc_encode_coding_system[outch] |
| 7100 | = (struct coding_system *) xmalloc (sizeof (struct coding_system)); | 7100 | = xmalloc (sizeof (struct coding_system)); |
| 7101 | setup_coding_system (p->encode_coding_system, | 7101 | setup_coding_system (p->encode_coding_system, |
| 7102 | proc_encode_coding_system[outch]); | 7102 | proc_encode_coding_system[outch]); |
| 7103 | #endif | 7103 | #endif |