Skip to content

Commit

Permalink
Merge pull request #452 from rcoup/st_read_meta-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxxen authored Dec 5, 2024
2 parents 0eda981 + 01a8408 commit cd02956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spatial/src/spatial/gdal/file_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DuckDBFileHandle : public VSIVirtualHandle {
bool is_eof;

public:
explicit DuckDBFileHandle(unique_ptr<FileHandle> file_handle_p) : file_handle(std::move(file_handle_p)) {
explicit DuckDBFileHandle(unique_ptr<FileHandle> file_handle_p) : file_handle(std::move(file_handle_p)), is_eof(false) {
}

vsi_l_offset Tell() override {
Expand Down

0 comments on commit cd02956

Please sign in to comment.