diff options
author | Russell Belfer <rb@github.com> | 2014-05-12 14:38:39 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2014-05-15 14:11:19 -0700 |
commit | 575f107704255254f52d197240d55f2030af0454 (patch) | |
tree | af5149788297f3e9ec17992b342a3005eab36e31 /src/diff_tform.c | |
parent | 88b1b36dfcc6b406f2b6f21e0e042071984b3b90 (diff) | |
download | libgit2-rb/object-parse-flexibility.tar.gz |
Add lax parsing for commit and tag objectsrb/object-parse-flexibility
This changes the behavior of object parsing for commits and tags
so that even when bad data is found inside the object, we will
continue to try to parse as much of the object as we can. The
existing functions (`git_object_lookup` for example) will still
delete the partially parsed object before returning an error, but
this also adds a new function `git_object_lookup_lax` that will
still return the error, but will also return the object with the
partial data (if we got far enough along in the parsing process to
even create the base object).
Diffstat (limited to 'src/diff_tform.c')
-rw-r--r-- | src/diff_tform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff_tform.c b/src/diff_tform.c index a2dab0ae2..4d5359edc 100644 --- a/src/diff_tform.c +++ b/src/diff_tform.c @@ -508,7 +508,7 @@ static int similarity_sig( if (info->odb_obj != NULL) error = git_object__from_odb_object( (git_object **)&info->blob, info->repo, - info->odb_obj, GIT_OBJ_BLOB); + info->odb_obj, GIT_OBJ_BLOB, true); else error = git_blob_lookup(&info->blob, info->repo, &file->id); |