Merge branch 'maint-0.2.8' into maint-0.2.9

This commit is contained in:
Nick Mathewson
2016-11-03 15:41:04 -04:00
3 changed files with 7 additions and 6 deletions
+2 -3
View File
@@ -743,14 +743,13 @@ crypto_pk_write_key_to_string_impl(crypto_pk_t *env, char **dest,
}
BIO_get_mem_ptr(b, &buf);
(void)BIO_set_close(b, BIO_NOCLOSE); /* so BIO_free doesn't free buf */
BIO_free(b);
*dest = tor_malloc(buf->length+1);
memcpy(*dest, buf->data, buf->length);
(*dest)[buf->length] = 0; /* nul terminate it */
*len = buf->length;
BUF_MEM_free(buf);
BIO_free(b);
return 0;
}