Commit 9149b49
committed
Fix Secp256k1 on 64bit Linux
The bindings to the native library functions were incorrectly using C#
uint in place of C's size_t. This was causing the library to segfault on
64bit linux due to C#'s uint being 32bit where C's size_t is 64bit.
This commit changes these bindings to use UIntPtr as a closer
approximation of size_t.1 parent 3d01b58 commit 9149b49
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
357 | 357 | | |
358 | 358 | | |
359 | 359 | | |
360 | | - | |
| 360 | + | |
0 commit comments