The branch master has been updated
via ae6c553ecaa915d2689e66d68ac0965beba31e53 (commit)
from adb4076ae06dd6ff01a62b1fcd73f02aadc5ecae (commit)
- Log -----------------------------------------------------------------
commit ae6c553ecaa915d2689e66d68ac0965beba31e53
Author: Viktor Dukhovni <[email protected]>
Date: Sun Apr 3 20:58:09 2016 -0400
Fix mixed declarations and code
Reviewed-by: Dr. Stephen Henson <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
apps/dsaparam.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/apps/dsaparam.c b/apps/dsaparam.c
index 64e92ae..5c282be 100644
--- a/apps/dsaparam.c
+++ b/apps/dsaparam.c
@@ -264,13 +264,14 @@ int dsaparam_main(int argc, char **argv)
if (C) {
BIGNUM *p = NULL, *q = NULL, *g = NULL;
+ unsigned char *data;
int len, bits_p;
DSA_get0_pqg(dsa, &p, &q, &g);
len = BN_num_bytes(p);
bits_p = BN_num_bits(p);
- unsigned char *data = app_malloc(len + 20, "BN space");
+ data = app_malloc(len + 20, "BN space");
BIO_printf(bio_out, "DSA *get_dsa%d()\n{\n", bits_p);
print_bignum_var(bio_out, p, "dsap", len, data);
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits