Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Why do you need this change in getdelim interceptors?
lib/sanitizer_common/sanitizer_common_interceptors.inc | ||
---|---|---|
3911 | Why do you need ... ? |
Comment Actions
Why do you need this change in getdelim interceptors?
There's no __getdelim() on FreeBSD so we shouldn't try to call REAL(__getdelim)() there and I'm not sure calling getdelim() from within the __getdelim() interceptor will work on all platforms.
Comment Actions
Thanks for the explanation.
LGTM.
Do you want to disable the __getdelim interceptor on FreeBSD, or just leave it there?
Comment Actions
Thanks Eugeniy. The plan is to disable non-FreeBSD interceptors with another series of commits, unless there's some urgency about it.
Why do you need ... ?