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:
9eaa5f9
)
Fixup secmemtest for the change of CRYPTO_free() and friends
author
Richard Levitte
<levitte@openssl.org>
Wed, 17 Feb 2016 10:03:55 +0000
(11:03 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 17 Feb 2016 11:27:53 +0000
(12:27 +0100)
Switching it to use OPENSSL_free() et al when appropriate.
Reviewed-by: Matt Caswell <matt@openssl.org>
test/secmemtest.c
patch
|
blob
|
history
diff --git
a/test/secmemtest.c
b/test/secmemtest.c
index 0ec3b9257188b1cbb01a214e01c8634a5b93f0a0..7a772917f9eba6ee63f61c6596949aecf6c79b29 100644
(file)
--- a/
test/secmemtest.c
+++ b/
test/secmemtest.c
@@
-20,8
+20,8
@@
int main(int argc, char **argv)
perror("failed 1");
return 1;
}
-
CRYPTO
_secure_free(p);
-
CRYPTO
_free(q);
+
OPENSSL
_secure_free(p);
+
OPENSSL
_free(q);
CRYPTO_secure_malloc_done();
#else
/* Should fail. */