| 138 | } |
| 139 | |
| 140 | uint64_t FileAccessPatchedGDRE::get_length() const { |
| 141 | if (!_try_apply_patch()) { |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | return patched_file->get_length(); |
| 146 | } |
| 147 | |
| 148 | bool FileAccessPatchedGDRE::eof_reached() const { |
| 149 | if (!_try_apply_patch()) { |