Fix a large native memory leak.
This leak was about 500k and would happen whenever a new binary dictionary was opened/closed. Bug: 6299535 Change-Id: I4fad5b4d9c556ca889f5ef62d9d083a2eff6346amain
parent
a7352c8df4
commit
3f675f7060
|
@ -26,6 +26,7 @@ namespace latinime {
|
||||||
class WordsPriorityQueuePool {
|
class WordsPriorityQueuePool {
|
||||||
public:
|
public:
|
||||||
WordsPriorityQueuePool(int mainQueueMaxWords, int subQueueMaxWords, int maxWordLength) {
|
WordsPriorityQueuePool(int mainQueueMaxWords, int subQueueMaxWords, int maxWordLength) {
|
||||||
|
// Note: using placement new() requires the caller to call the destructor explicitly.
|
||||||
mMasterQueue = new(mMasterQueueBuf) WordsPriorityQueue(mainQueueMaxWords, maxWordLength);
|
mMasterQueue = new(mMasterQueueBuf) WordsPriorityQueue(mainQueueMaxWords, maxWordLength);
|
||||||
for (int i = 0, subQueueBufOffset = 0;
|
for (int i = 0, subQueueBufOffset = 0;
|
||||||
i < MULTIPLE_WORDS_SUGGESTION_MAX_WORDS * SUB_QUEUE_MAX_COUNT;
|
i < MULTIPLE_WORDS_SUGGESTION_MAX_WORDS * SUB_QUEUE_MAX_COUNT;
|
||||||
|
@ -36,6 +37,11 @@ class WordsPriorityQueuePool {
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual ~WordsPriorityQueuePool() {
|
virtual ~WordsPriorityQueuePool() {
|
||||||
|
// Note: these explicit calls to the destructor match the calls to placement new() above.
|
||||||
|
if (mMasterQueue) mMasterQueue->~WordsPriorityQueue();
|
||||||
|
for (int i = 0; i < MULTIPLE_WORDS_SUGGESTION_MAX_WORDS * SUB_QUEUE_MAX_COUNT; ++i) {
|
||||||
|
if (mSubQueues[i]) mSubQueues[i]->~WordsPriorityQueue();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
WordsPriorityQueue* getMasterQueue() {
|
WordsPriorityQueue* getMasterQueue() {
|
||||||
|
|
Loading…
Reference in New Issue