mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-03 18:45:07 -05:00
Fix memset calls
This commit is contained in:
2
client.c
2
client.c
@@ -2808,7 +2808,7 @@ authenticate_from_config(const char *filename)
|
||||
}
|
||||
|
||||
/* Erase password from stack */
|
||||
memset(line, sizeof (line), 0);
|
||||
memset(line, 0, sizeof (line));
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user