2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

[master] s/mempcy/memmove/

This commit is contained in:
Evan Hunt
2014-11-06 13:01:59 -08:00
parent 8f0cf84bb1
commit 067c0c38e7
2 changed files with 3 additions and 3 deletions

View File

@@ -311,8 +311,8 @@ chacha_getuint16(isc_rng_t *rng) {
if (rng->have < sizeof(val))
chacha_rekey(rng, NULL, 0);
memcpy(&val, rng->buffer + CHACHA_BUFFERSIZE - rng->have,
sizeof(val));
memmove(&val, rng->buffer + CHACHA_BUFFERSIZE - rng->have,
sizeof(val));
/* Clear the copied region. */
memset(rng->buffer + CHACHA_BUFFERSIZE - rng->have,
0, sizeof(val));