[Python-checkins] Add missing va_end() calls in PC/launcher.c (GH-7690)

Miss Islington (bot) webhook-mailer at python.org
Fri Jun 15 19:00:27 EDT 2018


https://github.com/python/cpython/commit/ba7970fd0aa145975a7651806f826c4c1b33c066
commit: ba7970fd0aa145975a7651806f826c4c1b33c066
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-06-15T16:00:24-07:00
summary:

Add missing va_end() calls in PC/launcher.c (GH-7690)

(cherry picked from commit 3a6d752e35ad17fc00bc77b85364b1c599f4e0fe)

Co-authored-by: Zackery Spytz <zspytz at gmail.com>

files:
M PC/launcher.c

diff --git a/PC/launcher.c b/PC/launcher.c
index d717a7e3419a..417dca7cf032 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -61,6 +61,7 @@ debug(wchar_t * format, ...)
     if (log_fp != NULL) {
         va_start(va, format);
         vfwprintf_s(log_fp, format, va);
+        va_end(va);
     }
 }
 
@@ -83,6 +84,7 @@ error(int rc, wchar_t * format, ... )
 
     va_start(va, format);
     len = _vsnwprintf_s(message, MSGSIZE, _TRUNCATE, format, va);
+    va_end(va);
 
     if (rc == 0) {  /* a Windows error */
         winerror(GetLastError(), win_message, MSGSIZE);



More information about the Python-checkins mailing list