mirror of https://github.com/google/oss-fuzz.git
parent
444a4feafe
commit
a7ef958c49
|
@ -27,8 +27,11 @@ def TestOneInput(data):
|
||||||
except ValueError:
|
except ValueError:
|
||||||
return
|
return
|
||||||
|
|
||||||
encoded = orjson.dumps(orjson_data)
|
try:
|
||||||
del encoded
|
encoded = orjson.dumps(orjson_data)
|
||||||
|
del encoded
|
||||||
|
except TypeError:
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in New Issue