mirror of https://github.com/google/oss-fuzz.git
Remove network call from github_scarecrow.
This doesn't work in our fuzzing env.
This commit is contained in:
parent
4799eb3012
commit
09b178f416
|
@ -1,10 +1,9 @@
|
|||
import requests
|
||||
|
||||
RAN_ONCE = False
|
||||
|
||||
def do_something(data):
|
||||
global RAN_ONCE
|
||||
if not RAN_ONCE:
|
||||
print(requests.get('https://google.com'))
|
||||
RAN_ONCE = True
|
||||
if not data:
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue