From 149adc351a678d02218dceb02938ccfb9b7a4b85 Mon Sep 17 00:00:00 2001 From: kervala Date: Fri, 1 Jan 2016 15:58:31 +0100 Subject: [PATCH] Fixed: Path when UnpackTo doesn't have a trailing / --HG-- branch : develop --- code/ryzom/client/src/login_patch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/client/src/login_patch.cpp b/code/ryzom/client/src/login_patch.cpp index d9dfa487e..6bfb7bf1e 100644 --- a/code/ryzom/client/src/login_patch.cpp +++ b/code/ryzom/client/src/login_patch.cpp @@ -843,7 +843,7 @@ void CPatchManager::createBatchFile(CProductDescriptionForClient &descFile, bool for (uint32 fff = 0; fff < vFilenames.size (); fff++) { string SrcPath = ClientPatchPath; - string DstPath = rCat.getUnpackTo(); + string DstPath = CPath::standardizePath(rCat.getUnpackTo()); // to be sure there is a / at the end NLMISC::CFile::createDirectoryTree(DstPath); // this file must be moved