We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e57cc2c + 7126ce1 commit b630eafCopy full SHA for b630eaf
fuzzing/fuzz-targets/fuzz_submodule.py
@@ -84,6 +84,8 @@ def TestOneInput(data):
84
except Exception as e:
85
if isinstance(e, ValueError) and "embedded null byte" in str(e):
86
return -1
87
+ elif isinstance(e, OSError) and "File name too long" in str(e):
88
+ return -1
89
else:
90
return handle_exception(e)
91
0 commit comments