Browse Source

Not leaking socket in set ports option

Sergey Lyubka 12 năm trước cách đây
mục cha
commit
ab16220861
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      mongoose.c

+ 1 - 0
mongoose.c

@@ -4576,6 +4576,7 @@ static int set_ports_option(struct mg_context *ctx) {
     } else if ((ptr = realloc(ctx->listening_sockets,
                               (ctx->num_listening_sockets + 1) *
                               sizeof(ctx->listening_sockets[0]))) == NULL) {
+      closesocket(so.sock);
       success = 0;
     } else {
       set_close_on_exec(so.sock);