Enrico Lorenzoni

Results 7 comments of Enrico Lorenzoni

I used `ASAN_OPTIONS=detect_invalid_pointer_pairs=2`. Is yours set to 0?

Hello, any update on this? Is it worthwhile to you or should I close it?

Sure. Here is my test function: ``` .... setenv("TZ", timezone.c_str(), 1); // POSIX-specific std::cout

Well, everything is fixed if I add a call to tzset(); right after setenv("TZ", timezone.c_str(), 1); Probably the explanation is here: https://pubs.opengroup.org/onlinepubs/9699919799/functions/tzset.html > APPLICATION USAGE > Since the ctime(), localtime(),...

> I fixed all asan failures I've managed to reproduce locally with the options you mentioned. Can you test current develop branch if your failures are reproducible still? hello, will...

FYI this doesn't happen if I always set `date.tm_isdst = -1;` before returning in `add_to_field`, `set_field` and `reset_field`. That's good enough for my usage but I think it has performance...

Thanks, I studied the underlying syscalls with strace and I realised the client needs to subscribe before getting data. It makes sense. Do you think 200ms is a 100% safe...