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;