| 1365 | |
| 1366 | |
| 1367 | static void free_acl_list(IPAddressACL *in_acl) |
| 1368 | { |
| 1369 | IPAddressACL *pacl,*pacl2; |
| 1370 | |
| 1371 | pacl = in_acl; |
| 1372 | while(pacl) { |
| 1373 | pacl2 = pacl; |
| 1374 | pacl = pacl->next; |
| 1375 | av_freep(pacl2); |
| 1376 | } |
| 1377 | } |
| 1378 | |
| 1379 | static int validate_acl_list(IPAddressACL *in_acl, HTTPContext *c) |
| 1380 | { |
no test coverage detected