• Show log

    Commit

  • Hash : 276b94a1
    Author : Christian Weisgerber
    Date : 2020-11-13T21:09:10

    Call pthread_cond_destroy(cond) exactly once when closing a view. This moves the pthread_cond_destroy(need_commits) from stop_log_thread(), which can be called twice, to close_log_view(), which is called once. It also destroys the commit_loaded condition variable, which is created in open_log_view() but was never destroyed. ok stsp