tmontaigu / dbase-rs

Rust library to read & write dBase files.
MIT License
29 stars 30 forks source link

Fix record size written in header #27

Closed tmontaigu closed 2 years ago

tmontaigu commented 2 years ago

We did not account for the deletion flag flag that is one byte long and present before every record in the record size written in the header.

Without this our files are invalid

Fixes #26