Merge pull request #249 from prculley/bug9694
bug 9694, fix Gedcom import with no VERSion (very old Gedcom) crash
This commit is contained in:
commit
5e0198542f
@ -7271,7 +7271,7 @@ class GedcomParser(UpdateCallback):
|
||||
if self.__level_is_finished(line, state.level+1):
|
||||
break
|
||||
elif line.token == TOKEN_VERS:
|
||||
if line.data[0] != "5":
|
||||
if (not line.data) or line.data[0] != "5":
|
||||
self.__add_msg(_("GEDCOM version not supported"),
|
||||
line, state)
|
||||
if self.use_def_src:
|
||||
|
Loading…
Reference in New Issue
Block a user