Sun Feb 13 13:32:03 2022 UTC ()
remove dup assignments (RVP)


(christos)
diff -r1.15 -r1.16 src/lib/libcrypt/crypt-argon2.c

cvs diff -r1.15 -r1.16 src/lib/libcrypt/crypt-argon2.c (expand / switch to context diff)
--- src/lib/libcrypt/crypt-argon2.c 2021/11/22 14:30:24 1.15
+++ src/lib/libcrypt/crypt-argon2.c 2022/02/13 13:32:03 1.16
@@ -386,9 +386,6 @@
 
 	/* 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);