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
(This issue was originally reported by @besthust as #340)
python build_mozc.py build -c Debug package adb install -r -d android/bin/MozcForAndroid-debug.apk adb shell ime set org.mozc.android.inputmethod.japanese/.MozcService
adb shell dumpsys meminfo org.mozc.android.inputmethod.japanese
This is a native resource (including memory) leak due to the missing pthread_detach call in mozc::Thread::Detach src/base/thread.cc
pthread_detach
mozc::Thread::Detach
void Thread::Detach() { state_->handle_.reset(nullptr); }
Possible affected platforms:
Internal Issue ID: 26499803.
26499803
The text was updated successfully, but these errors were encountered:
d938fbb
matsuza
No branches or pull requests
(This issue was originally reported by @besthust as #340)
Environment
How to setup the environment to reproduce.
Steps to reproduce
adb shell dumpsys meminfo org.mozc.android.inputmethod.japanese
Expected behavior
Actual behavior
Additional information
This is a native resource (including memory) leak due to the missing
pthread_detach
call inmozc::Thread::Detach
src/base/thread.ccPossible affected platforms:
Internal Issue ID:
26499803
.The text was updated successfully, but these errors were encountered: