Commit 90450d8825e01e2deb24e0f9bd244a9efe243528

Patrick Steinhardt 2020-02-07T12:10:12

indexer: check return code of `git_hash_ctx_init` Initialization of the hashing context may fail on some systems, most notably on Win32 via the legacy hashing context. As such, we need to always check the error code of `git_hash_ctx_init`, which is not done when creating a new indexer. Fix the issue by adding checks.