FreeBSD build fix addendum: unintended variable shadowing.

This commit is contained in:
Jon Siwek 2013-12-05 11:15:02 -06:00
parent 21df25d429
commit be05d7b435

View file

@ -971,12 +971,12 @@ FILE* open_package(string& path, const string& mode)
return 0;
}
void SafePathOp::CheckValid(const char* result, const char* path,
void SafePathOp::CheckValid(const char* op_result, const char* path,
bool error_aborts)
{
if ( result )
if ( op_result )
{
result = result;
result = op_result;
error = false;
}
else