Fix a while loop in Directory::copy function (semicolon removed).
Former-commit-id: 6f27d4f85f32a3ee03321befaac3d652fd8a7e23
This commit is contained in:
parent
c2e197bda5
commit
9ad4aeb20f
|
|
@ -215,7 +215,7 @@ bool NzDirectory::Copy(const NzString& sourcePath, const NzString& destPath)
|
|||
return false;
|
||||
}
|
||||
|
||||
while (dir.NextResult(true));
|
||||
while (dir.NextResult(true))
|
||||
{
|
||||
if (dir.IsResultDirectory())
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue