diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index 92f6bfe636f..9d7b21cc76a 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -973,6 +973,9 @@ emacs_seccomp (unsigned int operation, unsigned int flags, void *args) | |||
| 973 | static ptrdiff_t | 973 | static ptrdiff_t |
| 974 | read_full (int fd, void *buffer, ptrdiff_t size) | 974 | read_full (int fd, void *buffer, ptrdiff_t size) |
| 975 | { | 975 | { |
| 976 | eassert (0 <= fd); | ||
| 977 | eassert (buffer != NULL); | ||
| 978 | eassert (0 <= size); | ||
| 976 | enum | 979 | enum |
| 977 | { | 980 | { |
| 978 | /* See MAX_RW_COUNT in sysdep.c. */ | 981 | /* See MAX_RW_COUNT in sysdep.c. */ |