Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ZstdDecompressor on 64-bit big-endian
When parsing the python arguments, using "I" (int) in the format string but passing a pointer to size_t means that, on big endian, we're only initializing the high-order bits of the size_t. Use "n" (Py_ssize_t) format instead, which should be the right size.
- Loading branch information