diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/crypto.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index e996b48a1a..e7b0ff194f 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -610,7 +610,6 @@ crypto_pk_write_key_to_string_impl(crypto_pk_env_t *env, char **dest, (void)BIO_set_close(b, BIO_NOCLOSE); /* so BIO_free doesn't free buf */ BIO_free(b); - tor_assert(buf->length >= 0); *dest = tor_malloc(buf->length+1); memcpy(*dest, buf->data, buf->length); (*dest)[buf->length] = 0; /* nul terminate it */ |