Commit 1c02b896 by Edward Thomson Committed by Patrick Steinhardt

smart subtransport: free url when resetting stream

Free the url field when resetting the stream to avoid leaking it.

(cherry picked from commit ca2eb460)
parent a20b8c21
......@@ -45,6 +45,11 @@ GIT_INLINE(int) git_smart__reset_stream(transport_smart *t, bool close_subtransp
t->current_stream = NULL;
}
if (t->url) {
git__free(t->url);
t->url = NULL;
}
if (close_subtransport &&
t->wrapped->close(t->wrapped) < 0)
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment