Free the stack in case we used heap allocation. */
| 143 | |
| 144 | /* Free the stack in case we used heap allocation. */ |
| 145 | static inline void raxStackFree(raxStack *ts) { |
| 146 | if (ts->stack != ts->static_items) rax_free(ts->stack); |
| 147 | } |
| 148 | |
| 149 | /* ---------------------------------------------------------------------------- |
| 150 | * Radix tree implementation |