Skip to content
Snippets Groups Projects
Commit 0df4004e authored by Russell Bryant's avatar Russell Bryant
Browse files

Add a minor loop optimization to the custom device state callback. Once the

correct device is found, it should just break out of the loop ...


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@61429 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 6b033eea
Branches
Tags
No related merge requests found
......@@ -99,8 +99,10 @@ static enum ast_device_state custom_devstate_callback(const char *data)
AST_RWLIST_RDLOCK(&custom_devices);
AST_RWLIST_TRAVERSE(&custom_devices, dev, entry) {
if (!strcasecmp(dev->name, data))
if (!strcasecmp(dev->name, data)) {
state = dev->state;
break;
}
}
AST_RWLIST_UNLOCK(&custom_devices);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment