aboutsummaryrefslogtreecommitdiffstats
path: root/code/botlib/be_aas_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/botlib/be_aas_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/botlib/be_aas_main.c')
-rw-r--r--code/botlib/be_aas_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/botlib/be_aas_main.c b/code/botlib/be_aas_main.c
index c07eb88..2963ecd 100644
--- a/code/botlib/be_aas_main.c
+++ b/code/botlib/be_aas_main.c
@@ -62,7 +62,7 @@ void QDECL AAS_Error(char *fmt, ...)
va_start(arglist, fmt);
vsprintf(str, fmt, arglist);
va_end(arglist);
- botimport.Print(PRT_FATAL, str);
+ botimport.Print(PRT_FATAL, "%s", str);
} //end of the function AAS_Error
//===========================================================================
//