diff options
author | the xhr <xhr@giessen.ccc.de> | 2021-08-25 14:04:07 +0200 |
---|---|---|
committer | the xhr <xhr@giessen.ccc.de> | 2021-08-25 14:04:07 +0200 |
commit | cebc5223abdec2d1d1862960ff0c473850eba134 (patch) | |
tree | 00cd16a2fea8c48e1b7a5f40b46d4501fa1ee4f9 /request.c | |
parent | 603332391cfd7951818975b787b57c38a3ce46d0 (diff) |
Replace malloc() in xmalloc() with calloc()
so that all memory get zero'ed out at allocation time. Remove a
then useless memset
Diffstat (limited to 'request.c')
-rw-r--r-- | request.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -39,8 +39,6 @@ uridecode(const char *request) const char *p; char *pt; - memset(temp, 0, strlen(request)+1); - p = request; pt = temp; |