MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / free_acl_list

Function free_acl_list

ffserver.c:1367–1377  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1365
1366
1367static 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
1379static int validate_acl_list(IPAddressACL *in_acl, HTTPContext *c)
1380{

Callers 1

validate_aclFunction · 0.85

Calls 1

av_freepFunction · 0.85

Tested by

no test coverage detected