mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 01:36:15 +02:00
Merge pull request #5043 from alyssais/vexing
libutil: use uniform initialization in _deletePath
This commit is contained in:
commit
9deeab6337
1 changed files with 1 additions and 1 deletions
|
@ -435,7 +435,7 @@ static void _deletePath(const Path & path, uint64_t & bytesFreed)
|
||||||
if (dir == "")
|
if (dir == "")
|
||||||
dir = "/";
|
dir = "/";
|
||||||
|
|
||||||
AutoCloseFD dirfd(open(dir.c_str(), O_RDONLY));
|
AutoCloseFD dirfd{open(dir.c_str(), O_RDONLY)};
|
||||||
if (!dirfd) {
|
if (!dirfd) {
|
||||||
if (errno == ENOENT) return;
|
if (errno == ENOENT) return;
|
||||||
throw SysError("opening directory '%1%'", path);
|
throw SysError("opening directory '%1%'", path);
|
||||||
|
|
Loading…
Reference in a new issue