Commit e31c450b by Nelson Elhage

Fix another missing git_pkt_free

parent bf4c2c57
......@@ -622,7 +622,9 @@ int git_smart__download_pack(
}
}
git__free(pkt);
if (pkt) {
git_pkt_free(pkt);
}
if (error < 0)
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