Commit abbe17ef by Josh Abernathy

Merge pull request #3322 from libgit2/fix-init-ordering

Increment `git__n_inits` before doing `init_once`.
parents 42156d56 9830fbba
......@@ -344,8 +344,8 @@ int git_libgit2_init(void)
{
int ret;
pthread_once(&_once_init, init_once);
ret = git_atomic_inc(&git__n_inits);
pthread_once(&_once_init, init_once);
return init_error ? init_error : ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment