mirror of https://mirror.osredm.com/root/redis.git
Merge pull request #5133 from soloestoy/fix-xdel-memory-leak
Streams: fix xdel memory leak
This commit is contained in:
commit
73cbc33a0a
|
@ -764,6 +764,7 @@ int streamDeleteItem(stream *s, streamID *id) {
|
|||
streamIteratorRemoveEntry(&si,&myid);
|
||||
deleted = 1;
|
||||
}
|
||||
streamIteratorStop(&si);
|
||||
return deleted;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue