tests/strbuf: call va_end for varargs

Summary: CID 1400792

Reviewers: brunobelo

Reviewed By: brunobelo

Subscribers: brunobelo, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10204
This commit is contained in:
Mike Blumenkrantz 2019-09-26 17:59:24 -04:00
parent b5ee2f128f
commit 2584adae08
1 changed files with 1 additions and 0 deletions

View File

@ -562,6 +562,7 @@ test_prepend(Eina_Strbuf *buf, ...)
va_start(ap, buf);
str = test_prepend_vprintf(buf, "%s %s %s %s", ap);
va_end(ap);
return str;
}