mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 06:07:12 -06:00
9.38
This commit is contained in:
committed by
Kornel Lesiński
parent
7e021179cd
commit
0713a3ab80
@@ -260,7 +260,7 @@ static HRESULT FsCopyFile(
|
||||
&writeAskResult));
|
||||
if (IntToBool(writeAskResult))
|
||||
{
|
||||
FString destPathNew = us2fs(destPathResult);
|
||||
FString destPathNew = us2fs((const wchar_t *)(BSTR)destPathResult);
|
||||
RINOK(callback->SetCurrentFilePath(fs2us(srcPath)));
|
||||
if (!FsCopyFile(srcPath, destPathNew, callback, completedSize))
|
||||
{
|
||||
@@ -351,7 +351,7 @@ static HRESULT FsMoveFile(
|
||||
&writeAskResult));
|
||||
if (IntToBool(writeAskResult))
|
||||
{
|
||||
FString destPathNew = us2fs(destPathResult);
|
||||
FString destPathNew = us2fs((const wchar_t *)(BSTR)destPathResult);
|
||||
RINOK(callback->SetCurrentFilePath(fs2us(srcPath)));
|
||||
if (!FsMoveFile(srcPath, destPathNew, callback, completedSize))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user