In the File webserver.c, line 735 to 737 you have this piece of code:
if (host != NULL)
free(host);
host = NULL;
Looks like setting the pointer to NULL should be within the if. It is not bad outside of the if but unnecessary, because the pointer is allready NULL if you do not enter the if. I think the code should be like this:
Hey there.
In the File webserver.c, line 735 to 737 you have this piece of code:
Looks like setting the pointer to NULL should be within the if. It is not bad outside of the if but unnecessary, because the pointer is allready NULL if you do not enter the if. I think the code should be like this:
Regards