diff options
Diffstat (limited to 'common/membuf.c')
-rw-r--r-- | common/membuf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/membuf.c b/common/membuf.c index 18a971d54..009fbc336 100644 --- a/common/membuf.c +++ b/common/membuf.c @@ -111,7 +111,10 @@ put_membuf (membuf_t *mb, const void *buf, size_t len) } mb->buf = p; } - memcpy (mb->buf + mb->len, buf, len); + if (buf) + memcpy (mb->buf + mb->len, buf, len); + else + memset (mb->buf + mb->len, 0, len); mb->len += len; } |