Home | History | Annotate | Download | only in libxtables

Lines Matching full:matchp

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