mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-04-04 00:42:02 +00:00
Fix buffer overflow warnings in dmap.cpp
This commit is contained in:
parent
e63fbe66b8
commit
0691c5010f
1 changed files with 2 additions and 2 deletions
|
@ -309,7 +309,7 @@ void Dmap( const idCmdArgs &args ) {
|
|||
bool region = false;
|
||||
// if this isn't a regioned map, delete the last saved region map
|
||||
if ( passedName.Right( 4 ) != ".reg" ) {
|
||||
sprintf( path, "%s.reg", dmapGlobals.mapFileBase );
|
||||
idStr::snPrintf( path, sizeof(path), "%s.reg", dmapGlobals.mapFileBase );
|
||||
fileSystem->RemoveFile( path );
|
||||
} else {
|
||||
region = true;
|
||||
|
@ -319,7 +319,7 @@ void Dmap( const idCmdArgs &args ) {
|
|||
passedName = stripped;
|
||||
|
||||
// delete any old line leak files
|
||||
sprintf( path, "%s.lin", dmapGlobals.mapFileBase );
|
||||
idStr::snPrintf( path, sizeof(path), "%s.lin", dmapGlobals.mapFileBase );
|
||||
fileSystem->RemoveFile( path );
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue