comparison dss.c @ 1412:a54b22f4058d

fix missing arglist NULL terminator
author Matt Johnston <matt@ucc.asn.au>
date Thu, 15 Jun 2017 08:00:07 +0800
parents 771e4a7051e0
children 4f17d75d027b 92717c0fec39
comparison
equal deleted inserted replaced
1410:771e4a7051e0 1412:a54b22f4058d
92 } 92 }
93 93
94 m_mp_alloc_init_multi(&key->x, NULL); 94 m_mp_alloc_init_multi(&key->x, NULL);
95 ret = buf_getmpint(buf, key->x); 95 ret = buf_getmpint(buf, key->x);
96 if (ret == DROPBEAR_FAILURE) { 96 if (ret == DROPBEAR_FAILURE) {
97 m_mp_free_multi(&key->x); 97 m_mp_free_multi(&key->x, NULL);
98 } 98 }
99 99
100 return ret; 100 return ret;
101 } 101 }
102 102