| 3197 | /* Enter and remove entries in the table 'cwd_file'. */ |
| 3198 | |
| 3199 | static void |
| 3200 | free_ent (struct fileinfo *f) |
| 3201 | { |
| 3202 | free (f->name); |
| 3203 | free (f->linkname); |
| 3204 | free (f->absolute_name); |
| 3205 | if (f->scontext != UNKNOWN_SECURITY_CONTEXT) |
| 3206 | aclinfo_scontext_free (f->scontext); |
| 3207 | } |
| 3208 | |
| 3209 | /* Empty the table of files. */ |
| 3210 | static void |
no outgoing calls
no test coverage detected