mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Replace the only memcpy usage with memmove
This commit is contained in:
parent
7615e86fae
commit
dc234e3819
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue