commit | bb8985b972e86f315705dfd15664c0491af91122 | [log] [tgz] |
---|---|---|
author | Linux Build Service Account <lnxbuild@localhost> | Wed Aug 19 12:23:52 2015 -0700 |
committer | Gerrit - the friendly Code Review server <code-review@localhost> | Wed Aug 19 12:23:52 2015 -0700 |
tree | 1f26b6b5755b87cbd1a98b7859de7aaf8b5da2c7 | |
parent | c0f0b37318e801161333c351fb4b94c0ca68e6f7 [diff] | |
parent | ca15ddb6452a928651d2bed3f43d84d2edb5cb7b [diff] |
Merge "fm: Fix for KW error"
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;