Skip to content

Commit b928031

Browse files
committed
Add missing initialization
1 parent 63b99c5 commit b928031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/ipc/memory.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ MemorySource::~MemorySource() {}
4141

4242
class MemoryMappedSource::Impl {
4343
public:
44-
Impl() : file_(nullptr), is_open_(false), data_(nullptr) {}
44+
Impl() : file_(nullptr), is_open_(false), is_writable_(false), data_(nullptr) {}
4545

4646
~Impl() {
4747
if (is_open_) {

0 commit comments

Comments
 (0)