Module Name: src Committed By: christos Date: Sun Feb 13 13:32:03 UTC 2022
Modified Files: src/lib/libcrypt: crypt-argon2.c Log Message: remove dup assignments (RVP) To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/lib/libcrypt/crypt-argon2.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libcrypt/crypt-argon2.c diff -u src/lib/libcrypt/crypt-argon2.c:1.15 src/lib/libcrypt/crypt-argon2.c:1.16 --- src/lib/libcrypt/crypt-argon2.c:1.15 Mon Nov 22 09:30:24 2021 +++ src/lib/libcrypt/crypt-argon2.c Sun Feb 13 08:32:03 2022 @@ -386,9 +386,6 @@ __crypt_argon2(const char *pw, const cha /* we use static buffers to avoid allocation */ /* and easier cleanup */ - ctx.out = (uint8_t *)ebuf; - ctx.outlen = sizeof(ebuf); - ctx.out = (uint8_t *)encodebuf; ctx.outlen = sizeof(encodebuf);