Merge branch 'master' of https://git.telodendria.io/Telodendria/Cytoplasm into mem-moment

This commit is contained in:
LDA 2024-07-18 13:20:17 +02:00
commit 0d122976d4
2 changed files with 2 additions and 2 deletions

View File

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

View File

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