Lines Matching refs:matchp
1081 struct xtables_rule_match *matchp, *tmp; in xtables_rule_matches_free() local
1083 for (matchp = *matches; matchp;) { in xtables_rule_matches_free()
1084 tmp = matchp->next; in xtables_rule_matches_free()
1085 if (matchp->match->m) { in xtables_rule_matches_free()
1086 free(matchp->match->m); in xtables_rule_matches_free()
1087 matchp->match->m = NULL; in xtables_rule_matches_free()
1089 if (matchp->match == matchp->match->next) { in xtables_rule_matches_free()
1090 free(matchp->match); in xtables_rule_matches_free()
1091 matchp->match = NULL; in xtables_rule_matches_free()
1093 free(matchp); in xtables_rule_matches_free()
1094 matchp = tmp; in xtables_rule_matches_free()