summaryrefslogtreecommitdiffstats
path: root/macosx/HBChapter.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-04-21 13:48:25 +0200
committerDamiano Galassi <[email protected]>2017-04-21 13:50:48 +0200
commit2cda3db7473c5751a9e785269ad43a76bbc34de6 (patch)
treecb6d21aca3679a7d66a39100f4c6eaa8d87eb449 /macosx/HBChapter.m
parentbc092457f1409c7d014bbdd3fbd65db0340244bf (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.m7
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;
}