summaryrefslogtreecommitdiffstats
path: root/src/storage/facade_chewing_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/facade_chewing_table.h')
-rw-r--r--src/storage/facade_chewing_table.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/storage/facade_chewing_table.h b/src/storage/facade_chewing_table.h
index e411589..34bf55b 100644
--- a/src/storage/facade_chewing_table.h
+++ b/src/storage/facade_chewing_table.h
@@ -67,6 +67,13 @@ public:
/* search method */
int search(int phrase_length, /* in */ ChewingKey keys[],
/* out */ PhraseIndexRanges ranges) const {
+
+ /* clear ranges. */
+ for (size_t i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) {
+ if (ranges[i])
+ g_array_set_size(ranges[i], 0);
+ }
+
int result = SEARCH_NONE;
if (NULL != m_system_chewing_table)