| 74 | } |
| 75 | |
| 76 | void GraphDecodeContext_Free(GraphDecodeContext *ctx) { |
| 77 | if(ctx) { |
| 78 | raxFree(ctx->meta_keys); |
| 79 | |
| 80 | if(ctx->multi_edge) { |
| 81 | array_free(ctx->multi_edge); |
| 82 | ctx->multi_edge = NULL; |
| 83 | } |
| 84 | |
| 85 | rm_free(ctx); |
| 86 | } |
| 87 | } |
| 88 |
no test coverage detected