Ignore empty markers.

This commit is contained in:
Sjoerd Mullender 1994-10-03 10:21:06 +00:00
parent 3a80c8defe
commit ebea896e20
1 changed files with 5 additions and 1 deletions

View File

@ -593,7 +593,11 @@ def _readmark(self, chunk):
id = _read_short(chunk)
pos = _read_long(chunk)
name = _read_string(chunk)
self._markers.append((id, pos, name))
if pos or name:
# some files appear to have
# dummy markers consisting of
# a position 0 and name ''
self._markers.append((id, pos, name))
except EOFError:
print 'Warning: MARK chunk contains only',
print len(self._markers),