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