This commit is contained in:
ps 2011-01-17 20:45:01 +00:00
parent 4853a7ca47
commit 2adab1b824
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ string Utils::get_canonical_filename(string file)
{
char buffer[MAX_PATH];
GetFullPathName(file.c_str(),sizeof(path),path,NULL);
GetFullPathName(file.c_str(),sizeof(buffer),buffer,NULL);
return string(buffer);
}