forked from Telodendria/Cytoplasm
Compare commits
No commits in common. "0d122976d4b00bec3871ae05b5e9c71f3ee30ec1" and "402d73c866741d2b72d4ccc0de9c5e88420fe02a" have entirely different histories.
0d122976d4
...
402d73c866
2 changed files with 2 additions and 2 deletions
|
@ -621,7 +621,7 @@ HttpParseHeaders(Stream * fp)
|
|||
|
||||
strncpy(headerValue, headerPtr, len);
|
||||
|
||||
Free(HashMapSet(headers, headerKey, headerValue));
|
||||
HashMapSet(headers, headerKey, headerValue);
|
||||
Free(headerKey);
|
||||
}
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ TlsInitClient(int fd, const char *serverName)
|
|||
|
||||
cookie->method = TLS_client_method();
|
||||
cookie->ctx = SSL_CTX_new(cookie->method);
|
||||
cookie->fd = fd;
|
||||
coolie->fd = fd;
|
||||
if (!cookie->ctx)
|
||||
{
|
||||
goto error;
|
||||
|
|
Loading…
Reference in a new issue