proto-plus-python: catch recursion errors (#9290)

Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=54566
This commit is contained in:
DavidKorczynski 2022-12-27 20:09:42 +00:00 committed by GitHub
parent 86c03d3969
commit 2f52b886a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,8 @@ def TestOneInput(data):
pass
except TypeError:
pass
except RecursionError:
pass
def main():