Merge pull request #454 from dragos-oancea/mod_redis-nullptr-deref
[mod_redis] scan-build: Dereference of null pointer - cr_delete()
This commit is contained in:
commit
0594177ee0
|
@ -478,6 +478,7 @@ static int cr_receivereply(REDIS rhnd, char recvtype)
|
|||
|
||||
static void cr_delete(REDIS rhnd)
|
||||
{
|
||||
if (!rhnd) return;
|
||||
if (rhnd->reply.multibulk.bulks != NULL)
|
||||
free(rhnd->reply.multibulk.bulks);
|
||||
if (rhnd->reply.multibulk.idxs != NULL)
|
||||
|
|
Loading…
Reference in New Issue