]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/emacs.c (read_full): Add a few assertions.
authorPhilipp Stephani <phst@google.com>
Mon, 14 Dec 2020 20:25:11 +0000 (21:25 +0100)
committerPhilipp Stephani <phst@google.com>
Sat, 10 Apr 2021 21:41:52 +0000 (23:41 +0200)
src/emacs.c

index 92f6bfe636f4b0179d4acc4a67efdd99c580c0e2..9d7b21cc76a28bfcbab71e3a1e18acee39a12848 100644 (file)
@@ -973,6 +973,9 @@ emacs_seccomp (unsigned int operation, unsigned int flags, void *args)
 static ptrdiff_t
 read_full (int fd, void *buffer, ptrdiff_t size)
 {
+  eassert (0 <= fd);
+  eassert (buffer != NULL);
+  eassert (0 <= size);
   enum
   {
   /* See MAX_RW_COUNT in sysdep.c.  */