MCPcopy Create free account
hub / github.com/OpenPrinting/cups / httpAddrFreeList

Function httpAddrFreeList

cups/http-addrlist.c:490–509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

488 */
489
490void
491httpAddrFreeList(
492 http_addrlist_t *addrlist) /* I - Address list to free */
493{
494 http_addrlist_t *next; /* Next address in list */
495
496
497 /*
498 * Free each address in the list...
499 */
500
501 while (addrlist)
502 {
503 next = addrlist->next;
504
505 free(addrlist);
506
507 addrlist = next;
508 }
509}
510
511
512/*

Callers 15

list_serviceFunction · 0.85
create_listenerFunction · 0.85
process_jobFunction · 0.85
cupsdAcceptClientFunction · 0.85
valid_hostFunction · 0.85
read_cupsd_confFunction · 0.85
scan_devicesFunction · 0.85
mainFunction · 0.85
httpAddrGetListFunction · 0.85
mainFunction · 0.85
httpCloseFunction · 0.85
http_createFunction · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68