Merge pull request #8237 from nicolasnoble/memleak

Plugging memory leak.
pull/8240/merge
Nicolas Noble 9 years ago committed by GitHub
commit 2686bdbb9c
  1. 1
      src/core/lib/iomgr/tcp_windows.c

@ -319,6 +319,7 @@ static void win_write(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
? GRPC_ERROR_NONE
: GRPC_WSA_ERROR(info->wsa_error, "WSASend");
grpc_exec_ctx_sched(exec_ctx, cb, error, NULL);
if (allocated) gpr_free(allocated);
return;
}

Loading…
Cancel
Save