projects
/
ccan
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix missing va_end()s
[ccan]
/
tools
/
gcov.c
diff --git
a/tools/gcov.c
b/tools/gcov.c
index 79528c1b9e855b705b3986fc2c683791a624db28..bf2b61ccfdeb66a14c73f575bcbb2499159eb427 100644
(file)
--- a/
tools/gcov.c
+++ b/
tools/gcov.c
@@
-27,6
+27,7
@@
bool run_gcov(const void *ctx, unsigned int *time_ms, char **output,
args = tal_vfmt(ctx, fmt, ap);
rc = run_command(ctx, time_ms, output, "%s %s", cmd, args);
tal_free(args);
+ va_end(ap);
return rc;
}