pack: return the correct final offset

The callers of git_packfile_unpack() expect the obj_offset argument to
be set to the beginning of the next object. We were mistakenly returning
the the offset of the object's data, which causes the CRC function to
try to use the wrong offset.

Set obj_offset to curpos instead of elem->offset to point to the next
element and bring back expected behaviour.
This commit is contained in:
Carlos Martín Nieto 2014-08-26 15:09:47 +02:00
parent 844d226c9d
commit b3d3459f32

View File

@ -744,7 +744,7 @@ cleanup:
git__free(obj->data); git__free(obj->data);
if (elem) if (elem)
*obj_offset = elem->offset; *obj_offset = curpos;
git_array_clear(chain); git_array_clear(chain);
return error; return error;