-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
32-bit [non-]support #3
Comments
I suppose a lot of old raspberry pis are 32-bit still (or at least, 32-bit userland), and that is something I'd like to support. |
32-bit builds are now prevented by 4f257db, but I'd still like to fix this properly |
One issue here is confusion between I should probably make a |
|
7bb3b1b fixed a bug on 32-bit platforms, and aside from that it works, but may still be unsafe. |
This code was written with 64-bit platforms in mind. If sizeof(size_t) == 4, bad things might happen (wrt. integer overflows related to the length of large buffers).
I should either make sure it works safely on 32-bit platforms (I suspect not!), or prevent it from building on 32-bit platforms.
The text was updated successfully, but these errors were encountered: