summaryrefslogtreecommitdiffstats
path: root/win/winMain.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-03-17 08:36:55 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-03-17 08:36:55 (GMT)
commit1f915d51ed45d9f68cb4933a1c31b68c254ed242 (patch)
tree76eaf621e1859748736c351fd39fdd66844ade58 /win/winMain.c
parent9039a4d498efadb7fcf4c44e9802e336e8ea0d28 (diff)
downloadtk-1f915d51ed45d9f68cb4933a1c31b68c254ed242.zip
tk-1f915d51ed45d9f68cb4933a1c31b68c254ed242.tar.gz
tk-1f915d51ed45d9f68cb4933a1c31b68c254ed242.tar.bz2
Another round of type-casts for ckalloc() calls. Makes C++ compilers even more happy. Mainly for MacOS code.
Diffstat (limited to 'win/winMain.c')
-rw-r--r--win/winMain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/winMain.c b/win/winMain.c
index a21cc34..c3ec364 100644
--- a/win/winMain.c
+++ b/win/winMain.c
@@ -377,7 +377,7 @@ setargv(
#undef Tcl_Alloc
#undef Tcl_DbCkalloc
- argSpace = ckalloc(size * sizeof(char *)
+ argSpace = (TCHAR *)ckalloc(size * sizeof(char *)
+ (_tcslen(cmdLine) * sizeof(TCHAR)) + sizeof(TCHAR));
argv = (TCHAR **) argSpace;
argSpace += size * (sizeof(char *)/sizeof(TCHAR));