-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix to/from array conversions for windows
uint is **at least** 32 bit integer, according to the standard. on windows, the uint has 64 bits, as in linux, but: C.sizeof_ulong is 0x4 on windows. ASAN does not like that. but even if the value is stored, the code can't read it properly, because bytesToUlong checks `if sliceSize > C.sizeof_ulong`
- Loading branch information
1 parent
a81014c
commit faeffac
Showing
2 changed files
with
28 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters