Commit b1ce7c5a authored by Clemens Gruber's avatar Clemens Gruber Committed by Daniel Stenberg
Browse files

multi-uv.c: remove unused variable

parent b8c19597
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -50,14 +50,13 @@ typedef struct curl_context_s {

curl_context_t* create_curl_context(curl_socket_t sockfd)
{
  int r;
  curl_context_t *context;

  context = (curl_context_t *) malloc(sizeof *context);

  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;

  return context;