diff options
author | dgp <dgp@users.sourceforge.net> | 2009-01-08 17:57:32 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-01-08 17:57:32 (GMT) |
commit | 30a26f96c1c505cc093e3dea1e3e289f9cf58383 (patch) | |
tree | 460224d955fcb090df63e602dbc0db8397f02c18 /generic/tclStringObj.c | |
parent | c7b25ace36e6b101dddfeab447aad407bbf4d28b (diff) | |
download | tcl-30a26f96c1c505cc093e3dea1e3e289f9cf58383.zip tcl-30a26f96c1c505cc093e3dea1e3e289f9cf58383.tar.gz tcl-30a26f96c1c505cc093e3dea1e3e289f9cf58383.tar.bz2 |
* generic/tclStringObj.c (STRING_UALLOC): Added missing parens
required to get correct results out of things like
STRING_UALLOC(num + append). [Bug 2494093].
Diffstat (limited to 'generic/tclStringObj.c')
-rw-r--r-- | generic/tclStringObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index ab04253..73aec31 100644 --- a/generic/tclStringObj.c +++ b/generic/tclStringObj.c @@ -33,7 +33,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStringObj.c,v 1.32.2.2 2006/09/24 21:15:11 msofer Exp $ */ + * RCS: @(#) $Id: tclStringObj.c,v 1.32.2.3 2009/01/08 17:57:32 dgp Exp $ */ #include "tclInt.h" @@ -104,7 +104,7 @@ typedef struct String { } String; #define STRING_UALLOC(numChars) \ - (numChars * sizeof(Tcl_UniChar)) + ((numChars) * sizeof(Tcl_UniChar)) #define STRING_SIZE(ualloc) \ ((unsigned) ((ualloc) \ ? sizeof(String) - sizeof(Tcl_UniChar) + (ualloc) \ |