Skip to content

Commit

Permalink
Add CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Brodsky committed Aug 8, 2022
1 parent b2aeb1c commit ead4005
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The public API of this library consists of the functions declared in file
[h3api.h.in](./src/h3lib/include/h3api.h.in).

## [Unreleased]
### Fixed
- `polygonToCells` returns an error if Infinity is passed in. (#636)

## [4.0.0-rc4] - 2022-07-25
### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion src/apps/testapps/testPolygonToCells.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ SUITE(polygonToCells) {
// Chosen arbitrarily, polygonToCells should error out before this is an
// issue.
numHexagons = 0;

H3Index *hexagons = calloc(numHexagons, sizeof(H3Index));
t_assert(H3_EXPORT(polygonToCells)(&invalidGeoPolygon, 9, 0,
hexagons) == E_FAILED,
Expand Down

0 comments on commit ead4005

Please sign in to comment.