Commit bfd8795c authored by Jean-Paul Saman's avatar Jean-Paul Saman

Remove useless assert(len>0) because (len == 0) is already tested on line 159.

parent ce186430
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <assert.h>
#include <time.h> #include <time.h>
#include <errno.h> #include <errno.h>
...@@ -166,7 +165,6 @@ static void Dump (access_t *access, const uint8_t *buffer, size_t len) ...@@ -166,7 +165,6 @@ static void Dump (access_t *access, const uint8_t *buffer, size_t len)
goto error; goto error;
} }
assert (len > 0);
if (fwrite (buffer, len, 1, stream) != 1) if (fwrite (buffer, len, 1, stream) != 1)
{ {
msg_Err (access, "cannot write to file: %s", strerror (errno)); msg_Err (access, "cannot write to file: %s", strerror (errno));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment