We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac14556 commit c3e6473Copy full SHA for c3e6473
src/execution/execution_contexts/scriptRun_ctx.c
@@ -75,11 +75,14 @@ void RAI_ScriptRunCtxFree(RAI_ScriptRunCtx *sctx) {
75
for (size_t i = 0; i < array_len(sctx->args); ++i) {
76
RedisModule_FreeString(NULL, sctx->args[i]);
77
}
78
+ array_free(sctx->args);
79
80
for (size_t i = 0; i < array_len(sctx->keys); ++i) {
81
RedisModule_FreeString(NULL, sctx->keys[i]);
82
83
84
+ array_free(sctx->keys);
85
+
86
RedisModule_Free(sctx->fnname);
87
88
RAI_Error err = {0};
0 commit comments