| 3840 | { |
| 3841 | #ifdef RE_ENABLE_I18N |
| 3842 | if (node->type == COMPLEX_BRACKET && node->duplicated == 0) |
| 3843 | free_charset (node->opr.mbcset); |
| 3844 | else |
| 3845 | #endif /* RE_ENABLE_I18N */ |
| 3846 | if (node->type == SIMPLE_BRACKET && node->duplicated == 0) |
| 3847 | re_free (node->opr.sbcset); |
| 3848 | } |
| 3849 | |
| 3850 | /* Worker function for tree walking. Free the allocated memory inside NODE |
nothing calls this directly
no test coverage detected