| 96 | */ |
| 97 | |
| 98 | void cmd_free( CMD * cmd ) |
| 99 | { |
| 100 | cmdlist_free( cmd->next ); |
| 101 | lol_free( &cmd->args ); |
| 102 | list_free( cmd->shell ); |
| 103 | string_free( cmd->buf ); |
| 104 | freetargets( cmd->unlock ); |
| 105 | BJAM_FREE( (void *)cmd ); |
| 106 | } |
| 107 | |
| 108 | |
| 109 | /* |
no test coverage detected