diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-09 12:53:47 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-09 12:53:47 (GMT) |
commit | e5781ab16afd725f1e9aa45c274357237cbe3610 (patch) | |
tree | 6be368fdc2f5a1b5ed20a30cff555c945a10d91f /generic/tclFileName.c | |
parent | bf246ea5d94e9bccf1f9eb9ce7d2919bce42d313 (diff) | |
parent | ea48f8d21232bbc1905d0ab41af09f540bc9acb2 (diff) | |
download | tcl-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.c | 3 |
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 |