summaryrefslogtreecommitdiffstats
path: root/generic/tclAlloc.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-12-11 20:02:40 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-12-11 20:02:40 (GMT)
commitf8c365412ab16261db162c4018b225b1dd096aa8 (patch)
tree02e91e1577770fb368b1db809c5f12096e38d614 /generic/tclAlloc.c
parent9d94ed0d5461f1677bc5483a618768872457b7dc (diff)
parent00268d4ae68741fdbf73a54412cd38648f9d7302 (diff)
downloadtcl-f8c365412ab16261db162c4018b225b1dd096aa8.zip
tcl-f8c365412ab16261db162c4018b225b1dd096aa8.tar.gz
tcl-f8c365412ab16261db162c4018b225b1dd096aa8.tar.bz2
Merge 8.7
In test-cases, don't load Tcltest package if it isn't actually used. Another round of size_t related improvements. Nothing functional. Also improve some comments.
Diffstat (limited to 'generic/tclAlloc.c')
-rw-r--r--generic/tclAlloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclAlloc.c b/generic/tclAlloc.c
index 5c97f9c..9dcb431 100644
--- a/generic/tclAlloc.c
+++ b/generic/tclAlloc.c
@@ -274,8 +274,8 @@ TclpAlloc(
if (numBytes >= MAXMALLOC - OVERHEAD) {
if (numBytes <= UINT_MAX - OVERHEAD -sizeof(struct block)) {
- bigBlockPtr = TclpSysAlloc((unsigned)
- (sizeof(struct block) + OVERHEAD + numBytes));
+ bigBlockPtr = TclpSysAlloc(
+ sizeof(struct block) + OVERHEAD + numBytes);
}
if (bigBlockPtr == NULL) {
Tcl_MutexUnlock(allocMutexPtr);