# HG changeset patch # User Matt Johnston # Date 1497484807 -28800 # Node ID a54b22f4058d66e9236f6bccb2f30fdb8f448b9c # Parent 771e4a7051e07f0ddd64148eb8e19bfc24c575a7 fix missing arglist NULL terminator diff -r 771e4a7051e0 -r a54b22f4058d dss.c --- a/dss.c Wed Jun 14 23:31:15 2017 +0800 +++ b/dss.c Thu Jun 15 08:00:07 2017 +0800 @@ -94,7 +94,7 @@ 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;