rmsgpack_dom: Add missing va_end call

This commit is contained in:
Lioncash 2015-01-28 09:26:22 -05:00
parent 774b350e9e
commit b6926ced77

View File

@ -404,7 +404,10 @@ int rmsgpack_dom_read_into(int fd, ...)
(void)value_type;
if (rv < 0)
{
va_end(ap);
return rv;
}
if (map.type != RDT_MAP)
{