Unverified Commit 8ea131fc authored by Oran Agra's avatar Oran Agra Committed by GitHub
Browse files

Fix leak in new blockedclient module API test (#7780)

parent de8d3202
...@@ -46,6 +46,9 @@ void *worker(void *arg) { ...@@ -46,6 +46,9 @@ void *worker(void *arg) {
// Unblock client // Unblock client
RedisModule_UnblockClient(bc, NULL); RedisModule_UnblockClient(bc, NULL);
// Free the Redis module context
RedisModule_FreeThreadSafeContext(ctx);
return NULL; return NULL;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment