Plug memory leak on error path in the easy interfaces

This commit is contained in:
Frank Denis 2014-05-08 15:06:28 -07:00
parent 2a531bb519
commit 8a8463e4ac
2 changed files with 2 additions and 0 deletions

View File

@ -73,6 +73,7 @@ crypto_box_open_easy(unsigned char *m, const unsigned char *c,
memcpy(c_boxed + crypto_box_BOXZEROBYTES, c, clen);
m_boxed_len = c_boxed_len + crypto_box_MACBYTES;
if ((m_boxed = (unsigned char *) malloc(m_boxed_len)) == NULL) {
free(c_boxed);
return -1;
}
rc = crypto_box_open(m_boxed, c_boxed,

View File

@ -74,6 +74,7 @@ crypto_secretbox_open_easy(unsigned char *m, const unsigned char *c,
memcpy(c_boxed + crypto_secretbox_BOXZEROBYTES, c, clen);
m_boxed_len = c_boxed_len + crypto_secretbox_MACBYTES;
if ((m_boxed = (unsigned char *) malloc(m_boxed_len)) == NULL) {
free(c_boxed);
return -1;
}
rc = crypto_secretbox_open(m_boxed, c_boxed,