summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authordavygrvy <davygrvy@noemail.net>2003-12-23 03:48:00 (GMT)
committerdavygrvy <davygrvy@noemail.net>2003-12-23 03:48:00 (GMT)
commit6564b6e5c9ffd0b7f559ed1d0d1afb24d24cd672 (patch)
treef4c89e235945f6822bdce6be3d28b5054c75cfa8 /win
parent9c3498173be5756aeb825a012230b117ca9aef12 (diff)
downloadtcl-6564b6e5c9ffd0b7f559ed1d0d1afb24d24cd672.zip
tcl-6564b6e5c9ffd0b7f559ed1d0d1afb24d24cd672.tar.gz
tcl-6564b6e5c9ffd0b7f559ed1d0d1afb24d24cd672.tar.bz2
fixed static buffer overflow
FossilOrigin-Name: 105e213b31e4ff3e15683419dee20fa84675036d
Diffstat (limited to 'win')
-rw-r--r--win/nmakehlp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/nmakehlp.c b/win/nmakehlp.c
index 6b0de38..8d3175b 100644
--- a/win/nmakehlp.c
+++ b/win/nmakehlp.c
@@ -9,7 +9,7 @@
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* ----------------------------------------------------------------------------
- * RCS: @(#) $Id: nmakehlp.c,v 1.2 2003/12/23 02:19:13 davygrvy Exp $
+ * RCS: @(#) $Id: nmakehlp.c,v 1.3 2003/12/23 03:48:01 davygrvy Exp $
* ----------------------------------------------------------------------------
*/
#include <windows.h>
@@ -318,7 +318,7 @@ int
GrepForDefine (const char *file, const char *string)
{
FILE *f;
- char s1[50], s2[50], s3[50];
+ char s1[250], s2[50], s3[50];
int r = 0;
double d1;