]> xenbits.xensource.com Git - libvirt.git/commitdiff
Remove useless 'maxReg' variable
authorJán Tomko <jtomko@redhat.com>
Thu, 20 Mar 2014 11:56:58 +0000 (12:56 +0100)
committerJán Tomko <jtomko@redhat.com>
Wed, 26 Mar 2014 14:06:09 +0000 (15:06 +0100)
It is used to break out of the loop early if one regex does not match.
Use the 'break' statement instead.

src/util/vircommand.c

index 510707c1fe83fe2b27bf098ed650165105524791..4777d66c788bf8ba376de7479906c33531d93ab7 100644 (file)
@@ -2782,7 +2782,6 @@ virCommandRunRegex(virCommandPtr cmd,
     int err;
     regex_t *reg;
     regmatch_t *vars = NULL;
-    int maxReg = 0;
     size_t i, j, k;
     int totgroups = 0, ngroup = 0, maxvars = 0;
     char **groups;
@@ -2841,32 +2840,30 @@ virCommandRunRegex(virCommandPtr cmd,
         if (!p)
             p = lines[k];
 
-        for (i = 0; i <= maxReg && i < nregex; i++) {
-            if (regexec(&reg[i], p, nvars[i]+1, vars, 0) == 0) {
-                maxReg++;
+        for (i = 0; i < nregex; i++) {
+            if (regexec(&reg[i], p, nvars[i]+1, vars, 0) != 0)
+                break;
 
-                if (i == 0)
-                    ngroup = 0;
+            if (i == 0)
+                ngroup = 0;
 
-                /* NULL terminate each captured group in the line */
-                for (j = 0; j < nvars[i]; j++) {
-                    /* NB vars[0] is the full pattern, so we offset j by 1 */
-                    p[vars[j+1].rm_eo] = '\0';
-                    if (VIR_STRDUP(groups[ngroup++], p + vars[j+1].rm_so) < 0)
-                        goto cleanup;
-                }
+            /* NULL terminate each captured group in the line */
+            for (j = 0; j < nvars[i]; j++) {
+                /* NB vars[0] is the full pattern, so we offset j by 1 */
+                p[vars[j+1].rm_eo] = '\0';
+                if (VIR_STRDUP(groups[ngroup++], p + vars[j+1].rm_so) < 0)
+                    goto cleanup;
+            }
 
-                /* We're matching on the last regex, so callback time */
-                if (i == (nregex-1)) {
-                    if (((*func)(groups, data)) < 0)
-                        goto cleanup;
+            /* We're matching on the last regex, so callback time */
+            if (i == (nregex-1)) {
+                if (((*func)(groups, data)) < 0)
+                    goto cleanup;
 
-                    /* Release matches & restart to matching the first regex */
-                    for (j = 0; j < totgroups; j++)
-                        VIR_FREE(groups[j]);
-                    maxReg = 0;
-                    ngroup = 0;
-                }
+                /* Release matches & restart to matching the first regex */
+                for (j = 0; j < totgroups; j++)
+                    VIR_FREE(groups[j]);
+                ngroup = 0;
             }
         }
     }