Commit b3b92e099dd267bf2c5b86291eb2b36a6f8f6b3a

Patrick Steinhardt 2020-02-07T12:56:26

streams: openssl: ignore return value of `git_mutex_lock` OpenSSL pre-v1.1 required us to set up a locking function to properly support multithreading. The locking function signature cannot return any error codes, and as a result we can't do anything if `git_mutex_lock` fails. To silence static analysis tools, let's just explicitly ignore its return value by casting it to `void`.