From dev-return-19074-apmail-apr-dev-archive=apr.apache.org@apr.apache.org Tue Oct 09 07:02:54 2007 Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 43603 invoked from network); 9 Oct 2007 07:02:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Oct 2007 07:02:53 -0000 Received: (qmail 22532 invoked by uid 500); 9 Oct 2007 07:02:39 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 22479 invoked by uid 500); 9 Oct 2007 07:02:39 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Delivered-To: moderator for dev@apr.apache.org Received: (qmail 23404 invoked by uid 99); 9 Oct 2007 00:43:43 -0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_HELO_PASS,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Message-ID: <470ACE7B.1070508@ApiViewer.de> Date: Tue, 09 Oct 2007 02:42:35 +0200 From: Christoph von Wittich User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: dev@apr.apache.org Subject: bugfix Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Provags-ID: V01U2FsdGVkX1/n8DOjsLKFXiNRTYsKkWm6QgcLom8LXmF3R2e pUsBAtJMv3crX8vj72F+pAZk0f68zfHvaQ4CK3mM7Evv0EfxbT Jh5jbw9JF4h6N5rxPmV1PwmvKtpCoKA X-Virus-Checked: Checked by ClamAV on apache.org Index: misc/win32/start.c =================================================================== --- misc/win32/start.c (revision 582662) +++ misc/win32/start.c (working copy) @@ -124,7 +124,7 @@ wstrs = CommandLineToArgvW(sysstr, &wstrc); if (wstrs) { *argc = apr_wastrtoastr(argv, wstrs, wstrc); - GlobalFree(wstrs); + LocalFree(wstrs); } }