10 September 2021: Wouter
- Fix initialisation errors reported by gcc sanitizer.
- Fix lock debug code for gcc sanitizer reports.
+ - Fix more initialisation errors reported by gcc sanitizer.
8 September 2021: Wouter
- Merged #41 from Moritz Schneider: made outbound-msg-retry
return 1;
}
#endif
- log_init(0, 0, 0);
checklock_start();
+ log_init(0, 0, 0);
h2_session = http2_session_create();
if(!h2_session) fatal_exit("out of memory");
memset(&info, 0, sizeof(info));
info.io_num = 16;
+ checklock_start();
log_init(NULL, 0, NULL);
log_ident_set("perf");
- checklock_start();
#ifdef USE_WINSOCK
if((r = WSAStartup(MAKEWORD(2,2), &wsa_data)) != 0)
fatal_exit("WSAStartup failed: %s", wsa_strerror(r));
#endif
/* lock debug start (if any) */
- log_init(0, 0, 0);
checklock_start();
+ log_init(0, 0, 0);
#ifdef SIGPIPE
if(signal(SIGPIPE, &sigh) == SIG_ERR) {