commit | 19090f5ee1d435faa07ca27957a69e014d8894f7 | [log] [tgz] |
---|---|---|
author | Linux Build Service Account <lnxbuild@localhost> | Thu Aug 20 00:30:52 2015 -0700 |
committer | Gerrit - the friendly Code Review server <code-review@localhost> | Thu Aug 20 00:30:52 2015 -0700 |
tree | bf9802f29bb4ebe5629a3d6954f74b8243471c6b | |
parent | bb8985b972e86f315705dfd15664c0491af91122 [diff] | |
parent | 205f4c10fa2c2afe174041b275fecad018a0b561 [diff] |
Merge "FM2: Fix the issue with MO call"
diff --git a/jni/ConfFileParser.cpp b/jni/ConfFileParser.cpp index 103c240..ae8b15e 100644 --- a/jni/ConfFileParser.cpp +++ b/jni/ConfFileParser.cpp
@@ -753,7 +753,7 @@ while((grp != NULL)) { if(!strcmp(cur_grp, grp->grp_name)) { key_index = (key_hash_code % grp->keys_hash_size); - if(!grp->list) + if(grp->list) list = grp->list[key_index]; while((list != NULL) && strcmp(key, list->key)) { list = list->next;