summaryrefslogtreecommitdiffstats
path: root/generic/tclFileName.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-10-09 12:53:47 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-10-09 12:53:47 (GMT)
commite5781ab16afd725f1e9aa45c274357237cbe3610 (patch)
tree6be368fdc2f5a1b5ed20a30cff555c945a10d91f /generic/tclFileName.c
parentbf246ea5d94e9bccf1f9eb9ce7d2919bce42d313 (diff)
parentea48f8d21232bbc1905d0ab41af09f540bc9acb2 (diff)
downloadtcl-e5781ab16afd725f1e9aa45c274357237cbe3610.zip
tcl-e5781ab16afd725f1e9aa45c274357237cbe3610.tar.gz
tcl-e5781ab16afd725f1e9aa45c274357237cbe3610.tar.bz2
Merge 8.6. Don't inline functions which are too big to be inlined (according to the -Winline compiler flag)
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r--generic/tclFileName.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c
index ca4dc5b..c3f3bf0 100644
--- a/generic/tclFileName.c
+++ b/generic/tclFileName.c
@@ -587,7 +587,8 @@ Tcl_SplitPath(
* plus the argv pointers and the terminating NULL pointer.
*/
- *argvPtr = (const char **)ckalloc((((*argcPtr) + 1) * sizeof(char *)) + size);
+ *argvPtr = (const char **)ckalloc(
+ ((((*argcPtr) + 1) * sizeof(char *)) + size));
/*
* Position p after the last argv pointer and copy the contents of the