From 48f8ebbe2e403e9e28394be162476886e42307ce Mon Sep 17 00:00:00 2001 From: icculus Date: Tue, 15 Sep 2009 06:12:42 +0000 Subject: Quote commandline args with spaces when building the string for Com_Init(). git-svn-id: svn://svn.icculus.org/quake3/trunk@1620 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/sys/sys_main.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'code') diff --git a/code/sys/sys_main.c b/code/sys/sys_main.c index eb49326..ff58187 100644 --- a/code/sys/sys_main.c +++ b/code/sys/sys_main.c @@ -542,7 +542,15 @@ int main( int argc, char **argv ) // Concatenate the command line for passing to Com_Init for( i = 1; i < argc; i++ ) { + const qboolean containsSpaces = strchr(argv[i], ' ') != NULL; + if (containsSpaces) + Q_strcat( commandLine, sizeof( commandLine ), "\"" ); + Q_strcat( commandLine, sizeof( commandLine ), argv[ i ] ); + + if (containsSpaces) + Q_strcat( commandLine, sizeof( commandLine ), "\"" ); + Q_strcat( commandLine, sizeof( commandLine ), " " ); } -- cgit v1.2.3