Add missing va_end() call
This commit is contained in:
@@ -214,7 +214,7 @@ METHOD(os_info_t, get_setting, chunk_t,
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
/**
|
/**
|
||||||
* implements enumerator_t
|
* implements enumerator_t
|
||||||
*/
|
*/
|
||||||
enumerator_t public;
|
enumerator_t public;
|
||||||
|
|
||||||
@@ -273,6 +273,7 @@ static bool package_enumerator_enumerate(package_enumerator_t *this, ...)
|
|||||||
pos = strchr(pos, '\t');
|
pos = strchr(pos, '\t');
|
||||||
if (!pos)
|
if (!pos)
|
||||||
{
|
{
|
||||||
|
va_end(args);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
name->len = pos++ - name->ptr;
|
name->len = pos++ - name->ptr;
|
||||||
|
|||||||
Reference in New Issue
Block a user