Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Apr 5, 2024
1 parent 6ffb3e7 commit 56884ff
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 snprintf(out, n, "[invalid: out is released]");
}

struct ArrowSchemaView schema_view;
struct ArrowError error;

Expand Down

0 comments on commit 56884ff

Please sign in to comment.