Forráskód Böngészése

Merge pull request #630 from mretallack/master

Make sure that if sslize fails, we close the socket
bel2125 7 éve
szülő
commit
a78b6dd5b9
1 módosított fájl, 5 hozzáadás és 0 törlés
  1. 5 0
      src/civetweb.c

+ 5 - 0
src/civetweb.c

@@ -17731,6 +17731,11 @@ worker_thread_run(struct worker_thread_args *thread_args)
 					conn->request_info.client_cert = 0;
 				}
 			}
+			else
+			{
+				/* make sure the connection is cleaned up on SSL failure */
+				close_connection(conn);
+			}
 #endif
 		} else {
 			/* process HTTP connection */