We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In include/diy/storage.hpp, fread is used, but its return value is ignored.
include/diy/storage.hpp
fread
virtual inline void load_binary(char* x, size_t count) { fread(x, 1, count, file); }
fread returns the number of items read, so when requesting 1000 bytes, a read may read just 10 and further calls are necessary.
The text was updated successfully, but these errors were encountered:
That's a good point. A pull request correcting this would be welcome. (I won't get to fixing this myself until next week.)
Sorry, something went wrong.
No branches or pull requests
In
include/diy/storage.hpp
,fread
is used, but its return value is ignored.fread
returns the number of items read, so when requesting 1000 bytes, a read may read just 10 and further calls are necessary.The text was updated successfully, but these errors were encountered: