aboutsummaryrefslogtreecommitdiffstats
path: root/src/mem.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2012-02-19 01:19:48 +0100
committerLukas Fleischer <calcurse@cryptocrack.de>2012-02-19 01:41:01 +0100
commit8892bb3625a1f91f121fd98763a82c2cb0c0f67a (patch)
treea8007c0c5e029645e289eabfd6ecb50032e633e8 /src/mem.c
parentc17b535a33f9388e7eb183c3e1a0971259f4a5e6 (diff)
downloadcalcurse-8892bb3625a1f91f121fd98763a82c2cb0c0f67a.tar.gz
calcurse-8892bb3625a1f91f121fd98763a82c2cb0c0f67a.zip
Remove all usages of bzero() and bcopy()
The bzero() and bcopy() functions are deprecated and were removed from the POSIX standard in IEEE Std. 1003.1-2008. Remove all usages of bzero()/bcopy() and replace them by appropriate memset()/memmove() calls. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/mem.c')
-rw-r--r--src/mem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem.c b/src/mem.c
index 01fb010..8a7271d 100644
--- a/src/mem.c
+++ b/src/mem.c
@@ -205,7 +205,7 @@ dbg_calloc (size_t nmemb, size_t size, const char *pos)
if ((buf = dbg_malloc (size, pos)) == NULL)
return NULL;
- bzero (buf, size);
+ memset (buf, 0, size);
return buf;
}
@@ -229,7 +229,7 @@ dbg_realloc (void *ptr, size_t nmemb, size_t size, const char *pos)
old_size = *((unsigned *)ptr - EXTRA_SPACE_START + BLK_SIZE);
cpy_size = (old_size > new_size) ? new_size : old_size;
- bcopy (ptr, buf, cpy_size);
+ memmove (buf, ptr, cpy_size);
mem_free (ptr);