mirror of https://github.com/borgbackup/borg.git
Fix FUSE crash in xattr code on Linux introduced in 4d7b0f35
This commit is contained in:
parent
f0026d7237
commit
31bbdc3bee
|
@ -194,7 +194,7 @@ class FuseOperations(llfuse.Operations):
|
||||||
try:
|
try:
|
||||||
return item.get(b'xattrs', {})[name]
|
return item.get(b'xattrs', {})[name]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
raise llfuse.FUSEError(errno.ENOATTR) from None
|
raise llfuse.FUSEError(llfuse.ENOATTR) from None
|
||||||
|
|
||||||
def _load_pending_archive(self, inode):
|
def _load_pending_archive(self, inode):
|
||||||
# Check if this is an archive we need to load
|
# Check if this is an archive we need to load
|
||||||
|
|
Loading…
Reference in New Issue