mirror of https://github.com/google/oss-fuzz.git
proto-plus-python: catch recursion errors (#9290)
Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=54566
This commit is contained in:
parent
86c03d3969
commit
2f52b886a8
|
@ -34,6 +34,8 @@ def TestOneInput(data):
|
|||
pass
|
||||
except TypeError:
|
||||
pass
|
||||
except RecursionError:
|
||||
pass
|
||||
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Reference in New Issue