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:
ddc2912
)
RT2492: Remove extra NULL check.
author
Laszlo Papp
<djszapi@archlinux.us>
Mon, 18 Aug 2014 21:40:43 +0000
(17:40 -0400)
committer
Rich Salz
<rsalz@akamai.com>
Mon, 18 Aug 2014 21:41:24 +0000
(17:41 -0400)
crypto/ecdsa/ecdsatest.c
patch
|
blob
|
history
diff --git
a/crypto/ecdsa/ecdsatest.c
b/crypto/ecdsa/ecdsatest.c
index 87c0a65abf42a118802e0d706a99114dff2f0476..89b7c9f59c8e23e44a85f1c647e1ba482af0afab 100644
(file)
--- a/
crypto/ecdsa/ecdsatest.c
+++ b/
crypto/ecdsa/ecdsatest.c
@@
-177,8
+177,7
@@
int fbytes(unsigned char *buf, int num)
ret = 0;
else
ret = 1;
- if (tmp)
- BN_free(tmp);
+ BN_free(tmp);
return ret;
}