packagefs: Restore accidentally removed rw_lock initializations.

Incorrect rebase from the change that removes these from Node.
This commit is contained in:
Augustin Cavalier
2024-09-11 15:23:40 -04:00
parent 088e0628c2
commit fbf5967e67
@@ -23,11 +23,13 @@ Node::Node(ino_t id)
fName(),
fFlags(0)
{
rw_lock_init(&fLock, "packagefs node");
}
Node::~Node()
{
rw_lock_destroy(&fLock);
}