Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #25 - antrik:fix-large-transfers, r=pcwalton
Linux: Fix corruption of big transfers on 32 bit systems The wrong size calculation magically worked on 64 bit systems, because 2 * sizeof u32 is the same as sizeof usize there -- but not on 32 bit systems, where this dropped 4 bytes of each full fragment. With this, Servo works again for me. (And we are down to 4 failing ipc-channel tests on my system...)
- Loading branch information