mirror of https://github.com/google/oss-fuzz.git
python-markdown: catch recursion errors (#9291)
This commit is contained in:
parent
2f52b886a8
commit
b64be84aa5
|
@ -30,6 +30,8 @@ def TestOneInput(data):
|
|||
md.convert(fdp.ConsumeUnicodeNoSurrogates(1024))
|
||||
except NotImplementedError:
|
||||
pass
|
||||
except RecursionError:
|
||||
pass
|
||||
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Reference in New Issue