summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-01-03 14:07:24 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-01-03 14:07:24 (GMT)
commit48d8cf61b7fd0af160956618fdf9e4cbccebf078 (patch)
tree54dad526f36acf29f43fabc0987a1a640026950d /generic/tclInt.h
parentc164d719c23ebe8d20d8420dc2345163a36878eb (diff)
parent6470859885f92e276993f88322b090eca3cb24f2 (diff)
downloadtcl-48d8cf61b7fd0af160956618fdf9e4cbccebf078.zip
tcl-48d8cf61b7fd0af160956618fdf9e4cbccebf078.tar.gz
tcl-48d8cf61b7fd0af160956618fdf9e4cbccebf078.tar.bz2
merge main dev branch
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 95f8602..4f4268a 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -4012,7 +4012,7 @@ typedef const char *TclDTraceStr;
*/
# define TclAllocObjStorageEx(interp, objPtr) \
- (objPtr) = (Tcl_Obj *) Tcl_Alloc(sizeof(Tcl_Obj))
+ (objPtr) = (Tcl_Obj *) ckalloc(sizeof(Tcl_Obj))
# define TclFreeObjStorageEx(interp, objPtr) \
ckfree((char *) (objPtr))