]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Add a minor loop optimization to the custom device state callback. Once the
authorRussell Bryant <russell@russellbryant.com>
Wed, 11 Apr 2007 15:25:43 +0000 (15:25 +0000)
committerRussell Bryant <russell@russellbryant.com>
Wed, 11 Apr 2007 15:25:43 +0000 (15:25 +0000)
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

funcs/func_devstate.c

index c6429a85360b384ff2ac23993bed9e64afe9a132..6b0e7a3f94fd3d39c91672ed82239ddb12192a4d 100644 (file)
@@ -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);