diff options
Diffstat (limited to 'src/lib/libssl/src/crypto/ts/ts_lib.c')
-rw-r--r-- | src/lib/libssl/src/crypto/ts/ts_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libssl/src/crypto/ts/ts_lib.c b/src/lib/libssl/src/crypto/ts/ts_lib.c index e8608dbf71..a8de801e28 100644 --- a/src/lib/libssl/src/crypto/ts/ts_lib.c +++ b/src/lib/libssl/src/crypto/ts/ts_lib.c | |||
@@ -79,7 +79,7 @@ int TS_ASN1_INTEGER_print_bio(BIO *bio, const ASN1_INTEGER *num) | |||
79 | { | 79 | { |
80 | result = BIO_write(bio, "0x", 2) > 0; | 80 | result = BIO_write(bio, "0x", 2) > 0; |
81 | result = result && BIO_write(bio, hex, strlen(hex)) > 0; | 81 | result = result && BIO_write(bio, hex, strlen(hex)) > 0; |
82 | OPENSSL_free(hex); | 82 | free(hex); |
83 | } | 83 | } |
84 | BN_free(&num_bn); | 84 | BN_free(&num_bn); |
85 | 85 | ||