Merge branch 'nelhage/smart-no-pack'
diff --git a/src/transports/smart_protocol.c b/src/transports/smart_protocol.c
index 8a094b6..442a10f 100644
--- a/src/transports/smart_protocol.c
+++ b/src/transports/smart_protocol.c
@@ -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;