Compare commits

..

No commits in common. "0d122976d4b00bec3871ae05b5e9c71f3ee30ec1" and "402d73c866741d2b72d4ccc0de9c5e88420fe02a" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -621,7 +621,7 @@ HttpParseHeaders(Stream * fp)
strncpy(headerValue, headerPtr, len); strncpy(headerValue, headerPtr, len);
Free(HashMapSet(headers, headerKey, headerValue)); HashMapSet(headers, headerKey, headerValue);
Free(headerKey); Free(headerKey);
} }

View file

@ -81,7 +81,7 @@ TlsInitClient(int fd, const char *serverName)
cookie->method = TLS_client_method(); cookie->method = TLS_client_method();
cookie->ctx = SSL_CTX_new(cookie->method); cookie->ctx = SSL_CTX_new(cookie->method);
cookie->fd = fd; coolie->fd = fd;
if (!cookie->ctx) if (!cookie->ctx)
{ {
goto error; goto error;