From cd59192b2b7132761c4ae806f76462758d5ed22e Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 12 Mar 2015 17:15:24 +1100 Subject: Reduce size of buffers allocated on stack to avoid warnings from Visual Studio analyze. --- win32/PlatWin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 853473e11..3fdfc6065 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -479,7 +479,7 @@ public: } }; -const int stackBufferLength = 10000; +const int stackBufferLength = 1000; class TextWide : public VarBuffer { public: int tlen; -- cgit v1.2.3