diff options
| author | lhchavez <lhchavez@lhchavez.com> | 2020-06-27 12:33:32 -0700 |
|---|---|---|
| committer | lhchavez <lhchavez@lhchavez.com> | 2020-06-30 06:25:10 -0700 |
| commit | 3a197ea7ead1bc1b018eb809e92f418a00e5c3f8 (patch) | |
| tree | 782324566a568dc45ff7ee7599eafa48a8f2442e /src/object.c | |
| parent | d6c62852076005053be9169cb4f3cd9cf9db2aea (diff) | |
| download | libgit2-3a197ea7ead1bc1b018eb809e92f418a00e5c3f8.tar.gz | |
Make the tests pass cleanly with MemorySanitizer
This change:
* Initializes a few variables that were being read before being
initialized.
* Includes https://github.com/madler/zlib/pull/393. As such,
it only works reliably with `-DUSE_BUNDLED_ZLIB=ON`.
Diffstat (limited to 'src/object.c')
| -rw-r--r-- | src/object.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/object.c b/src/object.c index 1b47ab1a6..749b0caf2 100644 --- a/src/object.c +++ b/src/object.c @@ -86,7 +86,8 @@ int git_object__from_raw( GIT_ERROR_CHECK_ALLOC(object); object->cached.flags = GIT_CACHE_STORE_PARSED; object->cached.type = type; - git_odb_hash(&object->cached.oid, data, size, type); + if ((error = git_odb_hash(&object->cached.oid, data, size, type)) < 0) + return error; /* Parse raw object data */ def = &git_objects_table[type]; |
