settings: add missing va_end() call to hts_settings_vload() - coverity

This commit is contained in:
Jaroslav Kysela 2014-10-03 16:04:43 +02:00
parent 3c7990b7e0
commit 49c5896b4b

View file

@ -283,6 +283,8 @@ hts_settings_vload(const char *pathfmt, va_list ap, int depth)
ret = hts_settings_load_path(fullpath, depth);
}
va_end(ap2);
return ret;
}