Skip to content

Commit

Permalink
actually pass flags
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacbrodsky committed Jan 28, 2024
1 parent 85d5641 commit 5ac48c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apps/fuzzers/fuzzerPolygonToCells.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022-2023 Uber Technologies, Inc.
* Copyright 2022-2024 Uber Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/apps/fuzzers/fuzzerPolygonToCellsNoHoles.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
geoPolygon.geoloop.verts = (LatLng *)(data + 1);

for (uint32_t flags = 0; flags < CONTAINMENT_INVALID; flags++) {
run(&geoPolygon, 0, res);
run(&geoPolygon, flags, res);
}

return 0;
Expand Down

0 comments on commit 5ac48c5

Please sign in to comment.