projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da98940
)
Fix buffer overflow.
author
Ben Laurie
<ben@openssl.org>
Fri, 16 Nov 2007 14:41:09 +0000
(14:41 +0000)
committer
Ben Laurie
<ben@openssl.org>
Fri, 16 Nov 2007 14:41:09 +0000
(14:41 +0000)
apps/speed.c
patch
|
blob
|
history
diff --git
a/apps/speed.c
b/apps/speed.c
index c2ee1de6cc3cbf318933ee30c8481835219c9510..fed9131467090cf562f1d9fe83f3c5273db9adb7 100644
(file)
--- a/
apps/speed.c
+++ b/
apps/speed.c
@@
-414,7
+414,7
@@
int MAIN(int argc, char **argv)
#define MAX_BLOCK_SIZE 64
#endif
unsigned char DES_iv[8];
- unsigned char iv[MAX_BLOCK_SIZE/8];
+ unsigned char iv[
2*
MAX_BLOCK_SIZE/8];
#ifndef OPENSSL_NO_DES
DES_cblock *buf_as_des_cblock = NULL;
static DES_cblock key ={0x12,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0};