Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webapp: Fix possible unbound bs variable #1570

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tools/web-fuzzing-introspection/app/webapp/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1300,6 +1300,15 @@ def far_reach_but_low_coverage():
err_msgs.append('No functions found.')
bs = get_build_status_of_project(project_name)

if bs == None:
return {
'result':
'error',
'extended_msgs': [
'Project not in OSS-Fuzz (likely only contains a project.yaml file).'
]
}

# Check that builds are failing
if bs.introspector_build_status is False:
err_msgs.append('No successful build: introspector.')
Expand Down