Fix an infinite loop in the LRF renderer

This commit is contained in:
Kovid Goyal 2019-06-13 06:03:06 +05:30
parent 57a3121f6c
commit 7394a508e0
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -315,6 +315,8 @@ class TextBlock(object):
raw = raw[pos:]
if line_filled:
self.end_line()
if not pos:
break
def __iter__(self):
for line in self.lines: