mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
Replace the only memcpy usage with memmove
This commit is contained in:
@@ -87,7 +87,7 @@ isc_random_initialize(void) {
|
||||
#else
|
||||
isc_entropy_get(useed, sizeof(useed));
|
||||
#endif
|
||||
memcpy(seed, useed, sizeof(seed));
|
||||
memmove(seed, useed, sizeof(seed));
|
||||
}
|
||||
|
||||
uint8_t
|
||||
|
Reference in New Issue
Block a user