Commit 18b30467 authored by Oran Agra's avatar Oran Agra
Browse files

Fix leak in new blockedclient module API test

(cherry picked from commit 0e20ad14a6a857cb168b808f94721df19b23dc0c)
parent 0052d519
...@@ -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