How I fixed libuv
davidvgalbraith.com
How I fixed libuv
1–5 of 5 posts
Re: How I fixed libuv
#2Disclaimer: I'm one of the libuv maintainers.
Re: How I fixed libuv
#3> Segmentation faults happen in C when a program makes an invalid memory access.
Segmentation faults CAN happen, but don't need to. Just as likely some padding space (no effect at all), program data (some of your data will contain garbage) or code pointers (worst case! this means arbitrary code execution) can be overwritten.
Re: How I fixed libuv
#4It's probably overly pedantic of me, but: > Segmentation faults happen in C when a program makes an invalid memory access. Segmentation faults CAN happen, but don't need to. Just as likely some padding space (no effect at all), program data (some of your data will contain garbage) or code pointers (worst case! this means arbitrary code execution) can be overwritten.
Re: How I fixed libuv
#5It's probably overly pedantic of me, but: > Segmentation faults happen in C when a program makes an invalid memory access. Segmentation faults CAN happen, but don't need to. Just as likely some padding space (no effect at all), program data (some of your data will contain garbage) or code pointers (worst case! this means arbitrary code execution) can be overwritten.