Brad House
Brad House
Hmm, we have a wake event that should get triggered any time a new file descriptor is opened that needs to be waited on. Do you have any more details...
Thanks I'll test it out. Is this OS-specific? And what version of c-ares is being run?
thanks for the research. I should have time to work on it this weekend. Unfortunately my day job is keeping me slammed this week.
I created a PR with a reproducer in the test case in #1032 ... I'll try to get a proper resolution today.
> Big thanks for fixing! Is there a new release or patch in the making? Yes, I've got a security patch coming out soon once a CVE is assigned and...
I think 7d6de79 addresses this, but in a different way since /FS isn't a warning option
I don't know anything about Visual Studio at all honestly, so I don't know what needs to happen to address your issue.
googling suggests the issue is that it is using shared intermediate directories, not sure how to correct that in cmake. That said, I saw another possible solution which was to...
according to this https://gitlab.kitware.com/cmake/cmake/-/issues/20222 /FS is already added by default in cmake when using visual studio : https://github.com/Kitware/CMake/blob/master/Modules/Platform/Windows-MSVC.cmake#L384 Which would be why manually adding /FS didn't do anything.
so upon further review, I think its because the same source file is getting linked into multiple executables. `ares_strcasecmp.c` and `ares_getopt.c` are the two. I've never been a fan of...