Fix memory leak in redis backend, fixes #1325

master
sfan5 2014-05-23 13:30:58 +02:00
parent 73e5bc9c01
commit 94dba66c16
1 changed files with 1 additions and 0 deletions

View File

@ -116,6 +116,7 @@ void Database_Redis::saveBlock(MapBlock *block)
throw FileNotGoodException(std::string("redis command 'HSET %s %s %b' failed: ") + ctx->errstr);
if(reply->type == REDIS_REPLY_ERROR)
throw FileNotGoodException("Failed to store block in Database");
freeReplyObject(reply);
// We just wrote it to the disk so clear modified flag
block->resetModified();