Fix buffer overflow warnings in dmap.cpp

This commit is contained in:
Klaus Silveira 2025-02-26 04:01:15 -05:00 committed by Daniel Gibson
parent e63fbe66b8
commit 0691c5010f

View file

@ -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 );