2
0
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:
Ondřej Surý
2019-07-12 15:28:00 +02:00
parent 7615e86fae
commit dc234e3819

View File

@@ -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