Fix FUSE crash in xattr code on Linux introduced in 4d7b0f35

This commit is contained in:
Marian Beermann 2016-07-07 20:33:44 +02:00
parent f0026d7237
commit 31bbdc3bee
No known key found for this signature in database
GPG Key ID: 9B8450B91D1362C1
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ class FuseOperations(llfuse.Operations):
try:
return item.get(b'xattrs', {})[name]
except KeyError:
raise llfuse.FUSEError(errno.ENOATTR) from None
raise llfuse.FUSEError(llfuse.ENOATTR) from None
def _load_pending_archive(self, inode):
# Check if this is an archive we need to load