diff options
author | 2014-04-23 19:01:50 +0000 | |
---|---|---|
committer | 2014-04-23 19:01:50 +0000 | |
commit | ab6f83368682151d59984d93af79e9ef321b61a0 (patch) | |
tree | 313ecd41bb250e8a28cdb7b85a9aa0097f8c6b30 /lib/libssl/src | |
parent | Figure out endianness at compile-time, using _BYTE_ORDER from (diff) | |
download | wireguard-openbsd-ab6f83368682151d59984d93af79e9ef321b61a0.tar.xz wireguard-openbsd-ab6f83368682151d59984d93af79e9ef321b61a0.zip |
Remove duplicate pointer assignment in ASN1_primitive_free(); Dirk Engling
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/asn1/tasn_fre.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/asn1/tasn_fre.c b/lib/libssl/src/crypto/asn1/tasn_fre.c index 9e6e7579f15..c5e67745826 100644 --- a/lib/libssl/src/crypto/asn1/tasn_fre.c +++ b/lib/libssl/src/crypto/asn1/tasn_fre.c @@ -247,7 +247,6 @@ ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) default: ASN1_STRING_free((ASN1_STRING *)*pval); - *pval = NULL; break; } *pval = NULL; |