Skip to content

Commit

Permalink
[r/ci] Unbreak wheel builds (#2398)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored Apr 5, 2024
1 parent f1fb30b commit 5b02a00
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libtiledbsoma/src/external/src/nanoarrow/nanoarrow.c
Original file line number Diff line number Diff line change
Expand Up @@ -1712,6 +1712,10 @@ int64_t ArrowSchemaToString(const struct ArrowSchema* schema, char* out, int64_t
return snprintf(out, n, "[invalid: schema is released]");
}

if (out == NULL) {
return 0;
}

struct ArrowSchemaView schema_view;
struct ArrowError error;

Expand Down

0 comments on commit 5b02a00

Please sign in to comment.