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>
This commit is contained in:
4
src/io.c
4
src/io.c
@@ -1065,7 +1065,7 @@ get_import_stream (enum export_type type)
|
||||
|
||||
stream = NULL;
|
||||
stream_name = mem_malloc (BUFSIZ);
|
||||
bzero (stream_name, BUFSIZ);
|
||||
memset (stream_name, 0, BUFSIZ);
|
||||
while (stream == NULL)
|
||||
{
|
||||
status_mesg (ask_fname, "");
|
||||
@@ -1124,7 +1124,7 @@ io_import_data (enum import_type type, char *stream_name)
|
||||
if (stream == NULL)
|
||||
return;
|
||||
|
||||
bzero (&stats, sizeof stats);
|
||||
memset (&stats, 0, sizeof stats);
|
||||
|
||||
log = io_log_init ();
|
||||
if (log == NULL)
|
||||
|
||||
Reference in New Issue
Block a user