aboutsummaryrefslogtreecommitdiff
path: root/zencore/filesystem.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-09 13:13:27 +0200
committerStefan Boberg <[email protected]>2021-09-09 13:13:27 +0200
commit9ea46c26939261b4a432efef245e2662dc9f4eb0 (patch)
tree8f50142f2d0a379b66ffe9a7e9187102d2cb9207 /zencore/filesystem.cpp
parentRestructuring HTTP server implementation to better (completely asynchronously... (diff)
parentEliminate compiler default library warning for msvcrt (diff)
downloadzen-9ea46c26939261b4a432efef245e2662dc9f4eb0.tar.xz
zen-9ea46c26939261b4a432efef245e2662dc9f4eb0.zip
Merge branch 'main' into cbpackage-update
Diffstat (limited to 'zencore/filesystem.cpp')
-rw-r--r--zencore/filesystem.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/zencore/filesystem.cpp b/zencore/filesystem.cpp
index ec3de0306..09c2e7386 100644
--- a/zencore/filesystem.cpp
+++ b/zencore/filesystem.cpp
@@ -73,8 +73,6 @@ WipeDirectory(const wchar_t* DirPath)
WIN32_FIND_DATAW FindData;
HANDLE hFind = FindFirstFileW(Pattern.c_str(), &FindData);
- bool AllOk = true;
-
if (hFind != nullptr)
{
do