summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des/enc_writ.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/des/enc_writ.c')
-rw-r--r--src/lib/libcrypto/des/enc_writ.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/des/enc_writ.c b/src/lib/libcrypto/des/enc_writ.c
index 2353ac1e89..8f6b033c87 100644
--- a/src/lib/libcrypto/des/enc_writ.c
+++ b/src/lib/libcrypto/des/enc_writ.c
@@ -98,7 +98,7 @@ int DES_enc_write(int fd, const void *_buf, int len,
98 98
99 if (outbuf == NULL) 99 if (outbuf == NULL)
100 { 100 {
101 outbuf=OPENSSL_malloc(BSIZE+HDRSIZE); 101 outbuf=malloc(BSIZE+HDRSIZE);
102 if (outbuf == NULL) return(-1); 102 if (outbuf == NULL) return(-1);
103 } 103 }
104 /* If we are sending less than 8 bytes, the same char will look 104 /* If we are sending less than 8 bytes, the same char will look