fix missing arglist NULL terminator

This commit is contained in:
Matt Johnston 2017-06-15 08:00:07 +08:00
parent d260d5148e
commit 169f41a43c

2
dss.c
View File

@ -94,7 +94,7 @@ int buf_get_dss_priv_key(buffer* buf, dropbear_dss_key *key) {
m_mp_alloc_init_multi(&key->x, NULL);
ret = buf_getmpint(buf, key->x);
if (ret == DROPBEAR_FAILURE) {
m_mp_free_multi(&key->x);
m_mp_free_multi(&key->x, NULL);
}
return ret;