=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/speed.c,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/openssl/speed.c 2015/08/22 16:36:05 1.9 --- src/usr.bin/openssl/speed.c 2015/09/11 09:38:30 1.10 *************** *** 1,4 **** ! /* $OpenBSD: speed.c,v 1.9 2015/08/22 16:36:05 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * --- 1,4 ---- ! /* $OpenBSD: speed.c,v 1.10 2015/09/11 09:38:30 deraadt Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * *************** *** 153,159 **** #include "./testdsa.h" #include "./testrsa.h" ! #define BUFSIZE ((long)1024*8+1) int run = 0; static int mr = 0; --- 153,159 ---- #include "./testdsa.h" #include "./testrsa.h" ! #define BUFSIZE (1024*8+1) int run = 0; static int mr = 0; *************** *** 485,495 **** for (i = 0; i < RSA_NUM; i++) rsa_key[i] = NULL; ! if ((buf = malloc((int) BUFSIZE)) == NULL) { BIO_printf(bio_err, "out of memory\n"); goto end; } ! if ((buf2 = malloc((int) BUFSIZE)) == NULL) { BIO_printf(bio_err, "out of memory\n"); goto end; } --- 485,495 ---- for (i = 0; i < RSA_NUM; i++) rsa_key[i] = NULL; ! if ((buf = malloc(BUFSIZE)) == NULL) { BIO_printf(bio_err, "out of memory\n"); goto end; } ! if ((buf2 = malloc(BUFSIZE)) == NULL) { BIO_printf(bio_err, "out of memory\n"); goto end; }