[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

two small fixes

From: Christoph von Wittich <Christoph_at_ApiViewer.de>
Date: 2007-10-07 22:34:25 CEST

see attachments

Regards,
Christoph von Wittich
Christoph_vW@ReactOS.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);
             }
         }
 

Index: TortoiseProc/TortoiseProc.cpp
===================================================================
--- TortoiseProc/TortoiseProc.cpp (revision 10916)
+++ TortoiseProc/TortoiseProc.cpp (working copy)
@@ -401,7 +401,7 @@
                                 }
                         }
                 }
- delete path;
+ delete[] path;
         }
 
 

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
Received on Sun Oct 7 22:39:36 2007

This is an archived mail posted to the TortoiseSVN Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.