From c78df4615355431db6b50c750258f3a5975b9321 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 28 Oct 2005 11:52:23 -0400 Subject: BUG: fix stack over write bug --- Source/cmWin32ProcessExecution.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmWin32ProcessExecution.cxx b/Source/cmWin32ProcessExecution.cxx index 78c54c2..214bebb 100644 --- a/Source/cmWin32ProcessExecution.cxx +++ b/Source/cmWin32ProcessExecution.cxx @@ -791,7 +791,7 @@ bool cmWin32ProcessExecution::PrivateClose(int /* timeout */) } if (fserr.st_size > 0) { - char buffer[1023]; + char buffer[1024]; int len = read(m_pStdErr, buffer, 1023); buffer[len] = 0; if ( m_Verbose ) @@ -803,7 +803,7 @@ bool cmWin32ProcessExecution::PrivateClose(int /* timeout */) } if (fsout.st_size > 0) { - char buffer[1023]; + char buffer[1024]; int len = read(m_pStdOut, buffer, 1023); buffer[len] = 0; if ( m_Verbose ) -- cgit v0.12