diff options
| author | Paul Eggert | 2011-10-13 00:00:35 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-10-13 00:00:35 -0700 |
| commit | d83cf4ccb94a5d4ea15980d76f7b16ee19909200 (patch) | |
| tree | 89b250df6ff7ec8feea1601155f583cd7d2c0e3d /src/ChangeLog | |
| parent | 3f4eabd19215fe1271594ac3ec81d543d2714f20 (diff) | |
| download | emacs-d83cf4ccb94a5d4ea15980d76f7b16ee19909200.tar.gz emacs-d83cf4ccb94a5d4ea15980d76f7b16ee19909200.zip | |
* process.c (Fsignal_process): Check for process-ids out of pid_t range rather than relying on undefined behavior.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5826a4bd412..9bcbc92f5a4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -562,8 +562,8 @@ | |||
| 562 | (sigchld_handler): | 562 | (sigchld_handler): |
| 563 | Check that fixnums are in proper range for system types. | 563 | Check that fixnums are in proper range for system types. |
| 564 | (Fsignal_process): Simplify by avoiding a goto. | 564 | (Fsignal_process): Simplify by avoiding a goto. |
| 565 | Treat out-of-range process numbers just like invalid numbers | 565 | Check for process-ids out of pid_t range rather than relying on |
| 566 | that fit into the pid_t range, and return -1. | 566 | undefined behavior. |
| 567 | (Fformat_network_address, read_process_output, send_process) | 567 | (Fformat_network_address, read_process_output, send_process) |
| 568 | (Fprocess_send_region, status_notify): | 568 | (Fprocess_send_region, status_notify): |
| 569 | Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough. | 569 | Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough. |