Commit 3eec73ae by Nelson Elhage

PACK packets are illegal while downloading refs

parent e212011b
......@@ -70,6 +70,12 @@ int git_smart__store_refs(transport_smart *t, int flushes)
return -1;
}
if (pkt->type == GIT_PKT_PACK) {
giterr_set(GITERR_NET, "Unexpected packfile");
git__free(pkt);
return -1;
}
if (pkt->type != GIT_PKT_FLUSH && git_vector_insert(refs, pkt) < 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