Skip to content
Snippets Groups Projects
Commit 628e8fd0 authored by Constantin P.'s avatar Constantin P. 💬
Browse files

Merge branch 'hotfix-mt-send' into 'master'

...

See merge request !429
parents 3fe415cd 74016a06
1 merge request!429...
Pipeline #46576 passed with stage
in 30 minutes and 54 seconds
......@@ -216,13 +216,18 @@ static void s_notify_server_callback_queue(dap_events_socket_t * a_es, void * a_
log_it(L_ERROR,"Wrong worker id %u for send_inter() function", l_worker_id);
continue;
}
char *l_arg =
#ifdef DAP_EVENTS_CAPS_IOCP
a_arg;
#else
DAP_DUP_SIZE(a_arg, l_str_len + 1);
#endif
dap_events_socket_write_mt( dap_events_worker_get(l_worker_id),
l_socket_handler->uuid, a_arg, l_str_len + 1 );
l_socket_handler->uuid, l_arg, l_str_len + 1 );
}
pthread_rwlock_unlock(&s_notify_server_clients_mutex);
#ifdef DAP_EVENTS_CAPS_IOCP
DAP_DELETE(a_arg);
#endif
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment