git: accept NULL as argument to its stream free
diff --git a/src/transports/git.c b/src/transports/git.c
index 52de92d..3e7e5a0 100644
--- a/src/transports/git.c
+++ b/src/transports/git.c
@@ -132,9 +132,9 @@ static void git_proto_stream_free(git_smart_subtransport_stream *stream)
{
git_proto_stream *s = (git_proto_stream *)stream;
git_subtransport *t = OWNING_SUBTRANSPORT(s);
- int ret;
- GIT_UNUSED(ret);
+ if (!stream)
+ return;
t->current_stream = NULL;