Add missing va_end() in an error case to clean up after va_start()

(already done in the non-error case).

CID:		4726
Found with:	Coverity Prevent(tm)
MFC after:	1 week
This commit is contained in:
Christian Brueffer 2011-10-07 21:00:26 +00:00
parent 8a11984e21
commit 4795003bd2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226117

View File

@ -1764,6 +1764,7 @@ key_gather_mbuf(m, mhp, ndeep, nitem, va_alist)
fail:
m_freem(result);
va_end(ap);
return NULL;
}