diff options
author | Damiano Galassi <[email protected]> | 2017-04-21 13:48:25 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-04-21 13:50:48 +0200 |
commit | 2cda3db7473c5751a9e785269ad43a76bbc34de6 (patch) | |
tree | cb6d21aca3679a7d66a39100f4c6eaa8d87eb449 /macosx/HBChapter.m | |
parent | bc092457f1409c7d014bbdd3fbd65db0340244bf (diff) |
MacGui: do not load a job from disk if one or more job objects are missing.
Diffstat (limited to 'macosx/HBChapter.m')
-rw-r--r-- | macosx/HBChapter.m | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/macosx/HBChapter.m b/macosx/HBChapter.m index b3badef0c..d33ec9427 100644 --- a/macosx/HBChapter.m +++ b/macosx/HBChapter.m @@ -84,13 +84,14 @@ if (version == 1 && (self = [self init])) { - decodeObject(_title, NSString); - decodeObject(_duration, NSString); + decodeObjectOrFail(_title, NSString); + decodeObjectOrFail(_duration, NSString); decodeInteger(_index); return self; } - + +fail: return nil; } |