From a6600185ff93e9aeae297785418df1ce77fc4ffd Mon Sep 17 00:00:00 2001 From: janwas Date: Fri, 14 May 2010 21:28:16 +0000 Subject: [PATCH] fix delete vs delete[] This was SVN commit r7545. --- source/lib/sysdep/os/win/wseh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/sysdep/os/win/wseh.cpp b/source/lib/sysdep/os/win/wseh.cpp index 1e9b5cc354..73f8c3f02d 100644 --- a/source/lib/sysdep/os/win/wseh.cpp +++ b/source/lib/sysdep/os/win/wseh.cpp @@ -370,7 +370,7 @@ int wmain(int argc, wchar_t* argv[]) for(int i = 0; i < argc; i++) free(utf8_argv[i]); - delete utf8_argv; + delete[] utf8_argv; return ret; }