mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 15:10:02 +00:00
Merge pull request #4261 from RogerGee/fix_wait_while_ack
smart_protocol: fix parsing of server ACK responses
This commit is contained in:
commit
9927e9587a
@ -325,7 +325,8 @@ static int wait_while_ack(gitno_buffer *buf)
|
|||||||
|
|
||||||
if (pkt->type == GIT_PKT_ACK &&
|
if (pkt->type == GIT_PKT_ACK &&
|
||||||
(pkt->status != GIT_ACK_CONTINUE &&
|
(pkt->status != GIT_ACK_CONTINUE &&
|
||||||
pkt->status != GIT_ACK_COMMON)) {
|
pkt->status != GIT_ACK_COMMON &&
|
||||||
|
pkt->status != GIT_ACK_READY)) {
|
||||||
git__free(pkt);
|
git__free(pkt);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user