diff options
author | Mattias Andrée <maandree@kth.se> | 2018-10-27 12:19:50 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-10-27 12:21:23 +0200 |
commit | 7de3ced850b04b3aac8260c8fe731c2980417928 (patch) | |
tree | 53ff6cdeb7348835e67881f60927f47337c01161 /memdup.c | |
parent | Remove strndup, it is in POSIX (diff) | |
download | libsimple-7de3ced850b04b3aac8260c8fe731c2980417928.tar.gz libsimple-7de3ced850b04b3aac8260c8fe731c2980417928.tar.bz2 libsimple-7de3ced850b04b3aac8260c8fe731c2980417928.tar.xz |
memdup, aligned_memdup: allocate with size 1 if n is 0
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'memdup.c')
-rw-r--r-- | memdup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ void * libsimple_memdup(const void *s, size_t n) { - void *ret = malloc(n); + void *ret = malloc(n ? n : (size_t)1); if (!ret) return NULL; return memcpy(ret, s, n); |