Signed-off-by: Michael Haggerty <mhagger@xxxxxxxxxxxx> --- attr.c | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/attr.c b/attr.c index a7d1aa9..b56542e 100644 --- a/attr.c +++ b/attr.c @@ -228,14 +228,11 @@ static struct match_attr *parse_attr_line(const char *line, const char *src, for (pass = 0; pass < 2; pass++) { /* pass 0 counts and allocates, pass 1 fills */ - num_attr = 0; - cp = states; - while (*cp) { + for (cp = states, num_attr = 0; *cp; num_attr++) { cp = parse_attr(src, lineno, cp, pass ? &(res->state[num_attr]) : NULL); if (!cp) return NULL; - num_attr++; } if (pass) break; -- 1.7.6.8.gd2879 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html