Vincent Thiberville

Results 16 comments of Vincent Thiberville

I kind of have the same issue, where I need a dynamic `Metadata` and `Event`. I ended up with the same kind of tricks as `tracing-log`, where I have a...

https://github.com/dtolnay/anyhow/pull/134 might be of use, it includes explanations for the change, as well as what appears to be a fix for this exact function: https://github.com/dtolnay/anyhow/pull/134/files#diff-97e25e2a0e41c578875856e97b659be2719a65227c104b992e3144efa000c35eL549

The expected behavior is to have the exact same behavior as without the Cython pass. Cython is usually used to improve performances, but it can also be used for obfuscation...

On which version of Alpine do you have this issue? This is very likely due to musl 1.2.4, a fix is in progress here: https://github.com/VirusTotal/yara/pull/2048

Are you working on this @haberman ? I can try to make a PR for it otherwise

Yes, as explained in #2005, this change would break the "glibc, x86, LFS not enabled" case. There is a bit in musl explaining a bit the differences with glibc here:...

Adding a config.h does not solve the points i raised about avoiding the use of the 32-bits pread function when autotools is not used. @plusvic any opinions on the changes...

The issue that I raised is that if autotools are not used, it is very easy to forget to define `_FILE_OFFSET_BITS`, and this can lead to invalid process scanning. The...

Regarding your link, it also leads to this: https://github.com/jarun/nnn/commit/db8b61866b1cc6dbbf05f83a7ca623f42eb9fcb7 And defining it in `proc/linux.c` would mean this would also impact linux builds, and no other targets. This feels very safe...