Fix issue 61109: Use LocalFree() instead of GlobalFree() to free result of
CommandLineToArgvW().

git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1859402 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/misc/win32/start.c b/misc/win32/start.c
index 2d7b5ff..ea8b964 100644
--- a/misc/win32/start.c
+++ b/misc/win32/start.c
@@ -127,7 +127,7 @@
             wstrs = CommandLineToArgvW(sysstr, &wstrc);
             if (wstrs) {
                 *argc = apr_wastrtoastr(argv, wstrs, wstrc);
-                GlobalFree(wstrs);
+                LocalFree(wstrs);
             }
         }