Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Jul 1, 2024
1 parent df96ea5 commit 4a03f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ext/yuni/src/yuni/io/directory/remove.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static bool RmDirRecursiveInternal(const AnyString& path)
buffer.clear() << path << SEP << (const char*)ep->d_name;
::unlink(buffer.c_str());
}
} while ( ep = ::readdir(dp); ep ); // ...
} while (nullptr != (ep = ::readdir(dp)));
}
(void)::closedir(dp);
}
Expand Down

0 comments on commit 4a03f39

Please sign in to comment.