Building libcurl with -DCURLDEBUG and -DMEMDEBUG_LOG_SYNC for me causes crash in lib/memdebug.c inside curl_memdebug():
setvbuf(logfile, (char *)NULL, _IOLBF, 0);
I.e. Dr. Watson triggers a run-time check followed by a crash. But this seems to work as intended:
setvbuf(logfile, (char *)NULL, _IONBF, 0);
Anybody who can confirm this?
This seems to be the same as this Stackoverflow issue. I'm using MSVC-2015 (cl 19.00.23506 for x86) on Win-10.
Building libcurl with
-DCURLDEBUGand-DMEMDEBUG_LOG_SYNCfor me causes crash inlib/memdebug.cinsidecurl_memdebug():I.e. Dr. Watson triggers a run-time check followed by a crash. But this seems to work as intended:
Anybody who can confirm this?
This seems to be the same as this Stackoverflow issue. I'm using MSVC-2015 (cl 19.00.23506 for x86) on Win-10.