Unverified Commit 12232a5e by Edward Thomson Committed by GitHub

Merge pull request #4698 from nelhage/fix-leaks

Fix assorted leaks found via fuzzing
parents 5dd34702 3a547417
...@@ -167,8 +167,10 @@ int git_smart__update_heads(transport_smart *t, git_vector *symrefs) ...@@ -167,8 +167,10 @@ int git_smart__update_heads(transport_smart *t, git_vector *symrefs)
git_vector_foreach(symrefs, j, spec) { git_vector_foreach(symrefs, j, spec) {
git_buf_clear(&buf); git_buf_clear(&buf);
if (git_refspec_src_matches(spec, ref->head.name) && if (git_refspec_src_matches(spec, ref->head.name) &&
!(error = git_refspec_transform(&buf, spec, ref->head.name))) !(error = git_refspec_transform(&buf, spec, ref->head.name))) {
git__free(ref->head.symref_target);
ref->head.symref_target = git_buf_detach(&buf); ref->head.symref_target = git_buf_detach(&buf);
}
} }
git_buf_dispose(&buf); git_buf_dispose(&buf);
...@@ -277,8 +279,10 @@ static int git_smart__connect( ...@@ -277,8 +279,10 @@ static int git_smart__connect(
return error; return error;
/* Detect capabilities */ /* Detect capabilities */
if (git_smart__detect_caps(first, &t->caps, &symrefs) < 0) if (git_smart__detect_caps(first, &t->caps, &symrefs) < 0) {
free_symrefs(&symrefs);
return -1; return -1;
}
/* If the only ref in the list is capabilities^{} with OID_ZERO, remove it */ /* If the only ref in the list is capabilities^{} with OID_ZERO, remove it */
if (1 == t->refs.length && !strcmp(first->head.name, "capabilities^{}") && if (1 == t->refs.length && !strcmp(first->head.name, "capabilities^{}") &&
......
...@@ -375,7 +375,7 @@ static int32_t parse_len(const char *line) ...@@ -375,7 +375,7 @@ static int32_t parse_len(const char *line)
num[k] = '.'; num[k] = '.';
} }
} }
giterr_set(GITERR_NET, "invalid hex digit in length: '%s'", num); giterr_set(GITERR_NET, "invalid hex digit in length: '%s'", num);
return -1; return -1;
} }
...@@ -488,6 +488,9 @@ int git_pkt_parse_line( ...@@ -488,6 +488,9 @@ int git_pkt_parse_line(
void git_pkt_free(git_pkt *pkt) void git_pkt_free(git_pkt *pkt)
{ {
if (pkt == NULL) {
return;
}
if (pkt->type == GIT_PKT_REF) { if (pkt->type == GIT_PKT_REF) {
git_pkt_ref *p = (git_pkt_ref *) pkt; git_pkt_ref *p = (git_pkt_ref *) pkt;
git__free(p->head.name); git__free(p->head.name);
......
...@@ -323,27 +323,30 @@ on_error: ...@@ -323,27 +323,30 @@ on_error:
static int wait_while_ack(gitno_buffer *buf) static int wait_while_ack(gitno_buffer *buf)
{ {
int error; int error;
git_pkt_ack *pkt = NULL; git_pkt *pkt = NULL;
git_pkt_ack *ack = NULL;
while (1) { while (1) {
git__free(pkt); git_pkt_free(pkt);
if ((error = recv_pkt((git_pkt **)&pkt, NULL, buf)) < 0) if ((error = recv_pkt(&pkt, NULL, buf)) < 0)
return error; return error;
if (pkt->type == GIT_PKT_NAK) if (pkt->type == GIT_PKT_NAK)
break; break;
if (pkt->type != GIT_PKT_ACK)
continue;
if (pkt->type == GIT_PKT_ACK && ack = (git_pkt_ack*)pkt;
(pkt->status != GIT_ACK_CONTINUE &&
pkt->status != GIT_ACK_COMMON && if (ack->status != GIT_ACK_CONTINUE &&
pkt->status != GIT_ACK_READY)) { ack->status != GIT_ACK_COMMON &&
git__free(pkt); ack->status != GIT_ACK_READY) {
return 0; break;
} }
} }
git__free(pkt); git_pkt_free(pkt);
return 0; return 0;
} }
...@@ -621,7 +624,8 @@ int git_smart__download_pack( ...@@ -621,7 +624,8 @@ int git_smart__download_pack(
} }
} }
git__free(pkt); git_pkt_free(pkt);
if (error < 0) if (error < 0)
goto done; goto done;
......
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