aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_main.c
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-01-22 23:44:10 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-01-22 23:44:10 +0000
commiteee3dc4671e3517bc7dd539682a94432c2e1fe5d (patch)
tree7c6d5864559e738094dc16ace5796559aa373a40 /code/client/cl_main.c
parent471d3e541f362ccd96f78254bba54f11cdcd1d43 (diff)
downloadioquake3-aero-eee3dc4671e3517bc7dd539682a94432c2e1fe5d.tar.gz
ioquake3-aero-eee3dc4671e3517bc7dd539682a94432c2e1fe5d.zip
* (bug 3412) %s expansion security patch (DevHC)
git-svn-id: svn://svn.icculus.org/quake3/trunk@1250 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/cl_main.c')
-rw-r--r--code/client/cl_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/code/client/cl_main.c b/code/client/cl_main.c
index 789d3b1..af2aab9 100644
--- a/code/client/cl_main.c
+++ b/code/client/cl_main.c
@@ -452,7 +452,7 @@ void CL_DemoCompleted( void )
time / (float)clc.timeDemoFrames,
clc.timeDemoMaxDuration,
CL_DemoFrameDurationSDev( ) );
- Com_Printf( buffer );
+ Com_Printf( "%s", buffer );
// Write a log of all the frame durations
if( cl_timedemoLog && strlen( cl_timedemoLog->string ) > 0 )
@@ -1045,7 +1045,7 @@ void CL_RequestAuthorization( void ) {
fs = Cvar_Get ("cl_anonymous", "0", CVAR_INIT|CVAR_SYSTEMINFO );
- NET_OutOfBandPrint(NS_CLIENT, cls.authorizeServer, va("getKeyAuthorize %i %s", fs->integer, nums) );
+ NET_OutOfBandPrint(NS_CLIENT, cls.authorizeServer, "getKeyAuthorize %i %s", fs->integer, nums );
}
/*
@@ -3293,7 +3293,7 @@ void CL_GlobalServers_f( void ) {
for (i=3; i<count; i++)
buffptr += sprintf( buffptr, " %s", Cmd_Argv(i) );
- NET_OutOfBandPrint( NS_SERVER, to, command );
+ NET_OutOfBandPrint( NS_SERVER, to, "%s", command );
}