| 109 | |
| 110 | |
| 111 | void parse_free( PARSE * p ) |
| 112 | { |
| 113 | if ( --p->refs ) |
| 114 | return; |
| 115 | |
| 116 | if ( p->string ) |
| 117 | object_free( p->string ); |
| 118 | if ( p->string1 ) |
| 119 | object_free( p->string1 ); |
| 120 | if ( p->left ) |
| 121 | parse_free( p->left ); |
| 122 | if ( p->right ) |
| 123 | parse_free( p->right ); |
| 124 | if ( p->third ) |
| 125 | parse_free( p->third ); |
| 126 | if ( p->rulename ) |
| 127 | object_free( p->rulename ); |
| 128 | if ( p->file ) |
| 129 | object_free( p->file ); |
| 130 | |
| 131 | BJAM_FREE( (char *)p ); |
| 132 | } |
no test coverage detected