diff options
author | hobbs <hobbs> | 2008-04-07 18:39:36 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2008-04-07 18:39:36 (GMT) |
commit | c2b55e4312dad7264c31f53fdfc1db949a23bf7d (patch) | |
tree | a8ce36af1f92ea05352d362237570a29b4a785b9 | |
parent | 7bf46e6b4c9454ac734d721fce7fc42e1304a4ca (diff) | |
download | tk-c2b55e4312dad7264c31f53fdfc1db949a23bf7d.zip tk-c2b55e4312dad7264c31f53fdfc1db949a23bf7d.tar.gz tk-c2b55e4312dad7264c31f53fdfc1db949a23bf7d.tar.bz2 |
* generic/tkArgv.c: fix -help mem explosion. [Bug 1936238] (bachmann)
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | generic/tkArgv.c | 5 |
2 files changed, 9 insertions, 4 deletions
@@ -1,7 +1,11 @@ +2008-04-07 Jeff Hobbs <jeffh@ActiveState.com> + + * generic/tkArgv.c: fix -help mem explosion. [Bug 1936238] (bachmann) + 2008-04-04 Pat Thoyts <patthoyts@users.sourceforge.net> - * library/ttk/sizegrip.tcl: Don't resize if the toplevel is not resizable - or the sizegrip has been disabled. + * library/ttk/sizegrip.tcl: Don't resize if the toplevel is not + resizable or the sizegrip has been disabled. 2008-04-03 Pat Thoyts <patthoyts@users.sourceforge.net> diff --git a/generic/tkArgv.c b/generic/tkArgv.c index 95991ee..55fe45e 100644 --- a/generic/tkArgv.c +++ b/generic/tkArgv.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkArgv.c,v 1.11 2007/12/13 15:24:13 dgp Exp $ + * RCS: @(#) $Id: tkArgv.c,v 1.12 2008/04/07 18:39:36 hobbs Exp $ */ #include "tkInt.h" @@ -337,7 +337,8 @@ PrintUsage( * for default options. */ { register Tk_ArgvInfo *infoPtr; - size_t width, i, numSpaces; + size_t width, i; + int numSpaces; /* must be int to allow for negative values */ #define NUM_SPACES 20 static char spaces[] = " "; char tmp[TCL_DOUBLE_SPACE]; |