| 138 | |
| 139 | |
| 140 | void rule_free( RULE * r ) |
| 141 | { |
| 142 | object_free( r->name ); |
| 143 | r->name = 0; |
| 144 | if ( r->procedure ) |
| 145 | function_free( r->procedure ); |
| 146 | r->procedure = 0; |
| 147 | if ( r->actions ) |
| 148 | actions_free( r->actions ); |
| 149 | r->actions = 0; |
| 150 | } |
| 151 | |
| 152 | |
| 153 | /* |
no test coverage detected