aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
Diffstat (limited to 'libbb')
-rw-r--r--libbb/info_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/info_msg.c b/libbb/info_msg.c
index 5f375d43b..bc9d23b95 100644
--- a/libbb/info_msg.c
+++ b/libbb/info_msg.c
@@ -38,6 +38,7 @@ void FAST_FUNC bb_info_msg(const char *s, ...)
38 38
39 va_start(p, s); 39 va_start(p, s);
40 used = vasprintf(&msg, s, p); 40 used = vasprintf(&msg, s, p);
41 va_end(p);
41 if (used < 0) 42 if (used < 0)
42 return; 43 return;
43 44
@@ -51,6 +52,5 @@ void FAST_FUNC bb_info_msg(const char *s, ...)
51 } 52 }
52 53
53 free(msg); 54 free(msg);
54 va_end(p);
55#endif 55#endif
56} 56}