summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2016-01-27 13:45:21 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2016-01-27 13:45:21 (GMT)
commit89a1ffd910fd619087168a7a960717c8e1fb2b70 (patch)
tree7b30cd99e07a58edd0e587fcf6bb21285f10708a
parente3e6c76811e72f3130a6d269452784180b81da2f (diff)
downloadtcl-89a1ffd910fd619087168a7a960717c8e1fb2b70.zip
tcl-89a1ffd910fd619087168a7a960717c8e1fb2b70.tar.gz
tcl-89a1ffd910fd619087168a7a960717c8e1fb2b70.tar.bz2
small fix - previous commit was broken
-rw-r--r--generic/tclInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 6f3777a..fbfa5a7 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -3760,7 +3760,7 @@ MODULE_SCOPE void TclpFreeAllocCache(void *);
# define ALLOC_NOBJHIGH 1200
# define TclAllocObjStorage(objPtr) \
- TclThreadAllocObj()
+ (objPtr) = TclThreadAllocObj()
# define TclFreeObjStorage(objPtr) \
TclThreadFreeObj(objPtr)