Skip to content

Commit

Permalink
[r/ci] Unbreak wheel builds (#2398) (#2401)
Browse files Browse the repository at this point in the history
Co-authored-by: John Kerl <[email protected]>
  • Loading branch information
github-actions[bot] and johnkerl authored Apr 5, 2024
1 parent 448601a commit 1a85dd9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libtiledbsoma/src/utils/nanoarrow.c
Original file line number Diff line number Diff line change
Expand Up @@ -1713,6 +1713,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 1a85dd9

Please sign in to comment.