| 504 | } |
| 505 | |
| 506 | staticfn void |
| 507 | free_config_sections(void) |
| 508 | { |
| 509 | if (gc.config_section_chosen) { |
| 510 | free(gc.config_section_chosen); |
| 511 | gc.config_section_chosen = NULL; |
| 512 | } |
| 513 | if (gc.config_section_current) { |
| 514 | free(gc.config_section_current); |
| 515 | gc.config_section_current = NULL; |
| 516 | } |
| 517 | } |
| 518 | |
| 519 | /* check for " [ anything-except-bracket-or-empty ] # arbitrary-comment" |
| 520 | with spaces optional; returns pointer to "anything-except..." (with |
no outgoing calls
no test coverage detected