Loading changes/bug7816_023 +4 −0 Original line number Diff line number Diff line o Minor bugfixes (memory leak, controller): - Fix a memory leak during safe-cookie controller authentication. Spotted by Coverity. Fixes part of bug 7816; bugfix on 0.2.3.13-alpha. o Minor bugfixes (memory leak, HTTPS proxy support): - Fix a memory leak when receiving headers from an HTTPS proxy. Spotted by Coverity. Fixes part of bug 7816; bugfix on 0.2.1.1-alpha. src/or/connection.c +1 −0 Original line number Diff line number Diff line Loading @@ -1607,6 +1607,7 @@ connection_read_https_proxy_response(connection_t *conn) tor_free(headers); return -1; } tor_free(headers); if (!reason) reason = tor_strdup("[no reason given]"); if (status_code == 200) { Loading Loading
changes/bug7816_023 +4 −0 Original line number Diff line number Diff line o Minor bugfixes (memory leak, controller): - Fix a memory leak during safe-cookie controller authentication. Spotted by Coverity. Fixes part of bug 7816; bugfix on 0.2.3.13-alpha. o Minor bugfixes (memory leak, HTTPS proxy support): - Fix a memory leak when receiving headers from an HTTPS proxy. Spotted by Coverity. Fixes part of bug 7816; bugfix on 0.2.1.1-alpha.
src/or/connection.c +1 −0 Original line number Diff line number Diff line Loading @@ -1607,6 +1607,7 @@ connection_read_https_proxy_response(connection_t *conn) tor_free(headers); return -1; } tor_free(headers); if (!reason) reason = tor_strdup("[no reason given]"); if (status_code == 200) { Loading