1. Add missing unlock of lists.
2. Swap order of arguments to test_cat_cmp in complete_test_name.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@247381
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
break;
}
}
+ AST_LIST_UNLOCK(&tests);
return ret;
}
AST_LIST_LOCK(&tests);
AST_LIST_TRAVERSE(&tests, test, entry) {
- if (!test_cat_cmp(category, test->info.category) && (!strncasecmp(word, test->info.name, wordlen) && ++which > state)) {
+ if (!test_cat_cmp(test->info.category, category) && (!strncasecmp(word, test->info.name, wordlen) && ++which > state)) {
ret = ast_strdup(test->info.name);
break;
}
}
+ AST_LIST_UNLOCK(&tests);
return ret;
}