We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在你的应用中,使用了mutex来做为线程锁。在init方法中,你创建了一个mutex,但是没有任何地方释放此mutex,你应该在dealloc或别的适当的地方使用pthread_mutex_destroy(&_lock)来释放这个创建的mutex。
The text was updated successfully, but these errors were encountered:
destroy pthread_mutex on dealloc: #30
f433c34
Fixed. Thanks~
Sorry, something went wrong.
No branches or pull requests
在你的应用中,使用了mutex来做为线程锁。在init方法中,你创建了一个mutex,但是没有任何地方释放此mutex,你应该在dealloc或别的适当的地方使用pthread_mutex_destroy(&_lock)来释放这个创建的mutex。
The text was updated successfully, but these errors were encountered: