* adfFreeEntry * */
| 484 | * |
| 485 | */ |
| 486 | void adfFreeEntry(struct Entry *entry) |
| 487 | { |
| 488 | if (entry==NULL) |
| 489 | return; |
| 490 | if (entry->name) |
| 491 | free(entry->name); |
| 492 | if (entry->comment) |
| 493 | free(entry->comment); |
| 494 | free(entry); |
| 495 | } |
| 496 | |
| 497 | |
| 498 | /* |
no outgoing calls
no test coverage detected