We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在 void on_connection(uv_stream_t *stream, int status) 中已经对client对象初始化了: s_list_init(&client->list_node); s_list_attach(&server->running_clients, &client->list_node); 在 static void run_client(async, void *arg) 中再次初始化: s_list_init(&client->list_node); s_list_attach(&client->server->running_clients, &client->list_node); 重复初始化存在问题.
The text was updated successfully, but these errors were encountered:
确实是个bug,多谢指正
Sorry, something went wrong.
No branches or pull requests
在 void on_connection(uv_stream_t *stream, int status) 中已经对client对象初始化了:
s_list_init(&client->list_node);
s_list_attach(&server->running_clients, &client->list_node);
在 static void run_client(async, void *arg) 中再次初始化:
s_list_init(&client->list_node);
s_list_attach(&client->server->running_clients, &client->list_node);
重复初始化存在问题.
The text was updated successfully, but these errors were encountered: