summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2019-09-26 17:59:24 -0400
committerMike Blumenkrantz <zmike@samsung.com>2019-09-26 17:59:24 -0400
commit2584adae0850fa5f8a269d64d4fdcce376015c5a (patch)
treeb0c6ad70f220f3d784b242ef172cc9f05d45d147
parentb5ee2f128f230bafe871a148bc3853d55d2b9ef2 (diff)
downloadefl-2584adae0850fa5f8a269d64d4fdcce376015c5a.tar.gz
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
-rw-r--r--src/tests/eina/eina_test_strbuf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/eina/eina_test_strbuf.c b/src/tests/eina/eina_test_strbuf.c
index 67f304451d..88ffc7ff14 100644
--- a/src/tests/eina/eina_test_strbuf.c
+++ b/src/tests/eina/eina_test_strbuf.c
@@ -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;
}