summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2017-06-15 08:00:07 +0800
committerMatt Johnston <matt@ucc.asn.au>2017-06-15 08:00:07 +0800
commit169f41a43c6e7f98a1d0f3f62591a3cf527291fa (patch)
treecf2d0116fb5488f36aaea35717948e31b460d21f
parentd260d5148e2eec62e7af8d6ec86dae438e4a0ec9 (diff)
fix missing arglist NULL terminator
-rw-r--r--dss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dss.c b/dss.c
index 8f4f195..60e97c1 100644
--- a/dss.c
+++ b/dss.c
@@ -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;