diff options
author | Kurt Roeckx <kurt@roeckx.be> | 2016-06-05 20:51:04 +0200 |
---|---|---|
committer | Kurt Roeckx <kurt@roeckx.be> | 2016-06-11 16:43:49 +0200 |
commit | 0a3206539a41f48b24d107449779cdbf5104c1fc (patch) | |
tree | efb2bee69a66a593d0e11121b474b1c5a45bf526 /fuzz/driver.c | |
parent | Don't compare a just free()d pointer (diff) | |
download | openssl-0a3206539a41f48b24d107449779cdbf5104c1fc.tar.xz openssl-0a3206539a41f48b24d107449779cdbf5104c1fc.zip |
include stdlib for malloc() and free()
Reviewed-by: Rich Salz <rsalz@openssl.org>
GH: #1174
Diffstat (limited to 'fuzz/driver.c')
-rw-r--r-- | fuzz/driver.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzz/driver.c b/fuzz/driver.c index de515748ce..c530fedc84 100644 --- a/fuzz/driver.c +++ b/fuzz/driver.c @@ -9,6 +9,7 @@ */ #include <stdint.h> #include <unistd.h> +#include <stdlib.h> #include <openssl/opensslconf.h> #include "fuzzer.h" |