Merge pull request #246 from ThomasWaldmann/lock-roster-fix

do not crash on empty lock.roster, fixes #232
This commit is contained in:
TW 2015-10-06 00:14:31 +02:00
commit 934f18f447
1 changed files with 3 additions and 0 deletions

View File

@ -169,6 +169,9 @@ class LockRoster:
if err.errno != errno.ENOENT:
raise
data = {}
except ValueError:
# corrupt/empty roster file?
data = {}
return data
def save(self, data):