mirror of https://github.com/google/oss-fuzz.git
configparser: catch another exception (#9924)
Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=56168
This commit is contained in:
parent
0cace22082
commit
39eebf89b2
|
@ -33,6 +33,9 @@ def TestOneInput(data):
|
|||
config_parser.read_dict(json_dict)
|
||||
except (configparser.Error):
|
||||
pass
|
||||
except ValueError:
|
||||
# Thrown at: https://github.com/jaraco/configparser/blob/8b5181b4f270be88f3e4572300406587fdbd4a6e/src/backports/configparser/__init__.py#L422
|
||||
pass
|
||||
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Reference in New Issue