Skip to content

Commit

Permalink
Fix releasing arrow data
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminwinger committed Sep 11, 2023
1 parent 8520fcb commit 8de3f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/arrow/arrow_converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace kuzu {
namespace common {

static void releaseArrowSchema(ArrowSchema* schema) {
if (!schema || schema->release) {
if (!schema || !schema->release) {
return;
}
schema->release = nullptr;
Expand Down

0 comments on commit 8de3f45

Please sign in to comment.