From fca170fec9e16b37dd1bbec5b9734a77e0b09403 Mon Sep 17 00:00:00 2001 From: Carsten Bock Date: Tue, 4 Apr 2017 14:37:40 +0200 Subject: [PATCH] ndb_redis: Accidentally tried to free a reply from shmem, which is still in pkgmem --- src/modules/ndb_redis/redis_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ndb_redis/redis_client.c b/src/modules/ndb_redis/redis_client.c index 3310f8d0600..407967a7050 100644 --- a/src/modules/ndb_redis/redis_client.c +++ b/src/modules/ndb_redis/redis_client.c @@ -181,7 +181,7 @@ int redisc_destroy(void) freeReplyObject(rpl->rplRedis); if(rpl->rname.s != NULL) - shm_free(rpl->rname.s); + pkg_free(rpl->rname.s); pkg_free(rpl); rpl = next_rpl;