Changed: Convert unpackTo directories to absolute directories

--HG--
branch : develop
This commit is contained in:
kervala 2016-02-02 19:28:47 +01:00
parent 69b5157da5
commit d1252b44dd

View file

@ -1121,9 +1121,9 @@ void CPatchManager::readDescFile(sint32 nVersion)
std::string unpackTo = category.getUnpackTo(); std::string unpackTo = category.getUnpackTo();
if (unpackTo.substr(0, 2) == "./") if (unpackTo.substr(0, 1) == ".")
{ {
unpackTo = ClientRootPath + unpackTo.substr(2); unpackTo = CPath::makePathAbsolute(unpackTo, ClientRootPath, true);
category.setUnpackTo(unpackTo); category.setUnpackTo(unpackTo);
} }
} }
@ -2402,6 +2402,7 @@ void CPatchThread::run()
// Set a more explicit error message // Set a more explicit error message
pPM->setErrorMessage(sTranslate); pPM->setErrorMessage(sTranslate);
} }
PatchOk = !bErr; PatchOk = !bErr;
Ended = true; Ended = true;
} }