multi-uv.c: remove unused variable
This commit is contained in:
parent
b8c195974c
commit
b1ce7c5a6b
@ -50,14 +50,13 @@ typedef struct curl_context_s {
|
|||||||
|
|
||||||
curl_context_t* create_curl_context(curl_socket_t sockfd)
|
curl_context_t* create_curl_context(curl_socket_t sockfd)
|
||||||
{
|
{
|
||||||
int r;
|
|
||||||
curl_context_t *context;
|
curl_context_t *context;
|
||||||
|
|
||||||
context = (curl_context_t *) malloc(sizeof *context);
|
context = (curl_context_t *) malloc(sizeof *context);
|
||||||
|
|
||||||
context->sockfd = sockfd;
|
context->sockfd = sockfd;
|
||||||
|
|
||||||
r = uv_poll_init_socket(loop, &context->poll_handle, sockfd);
|
uv_poll_init_socket(loop, &context->poll_handle, sockfd);
|
||||||
context->poll_handle.data = context;
|
context->poll_handle.data = context;
|
||||||
|
|
||||||
return context;
|
return context;
|
||||||
|
Loading…
Reference in New Issue
Block a user