Commit fdef2b86 authored by Hendrik Polczynski's avatar Hendrik Polczynski

Update mongoose.c

when having connections with and without auth would cause double free and then crash
parent fbca54bc
...@@ -5017,6 +5017,7 @@ static void process_new_connection(struct mg_connection *conn) { ...@@ -5017,6 +5017,7 @@ static void process_new_connection(struct mg_connection *conn) {
} }
if (ri->remote_user != NULL) { if (ri->remote_user != NULL) {
free((void *) ri->remote_user); free((void *) ri->remote_user);
ri->remote_user = NULL; // when having connections with and without auth would cause double free and then crash
} }
// NOTE(lsm): order is important here. should_keep_alive() call // NOTE(lsm): order is important here. should_keep_alive() call
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment