Skip to content

Commit fecc1ca

Browse files
committed
Release zlib callbacks and buffer after processing chunks
1 parent dab0987 commit fecc1ca

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lib/zlib.js

+7
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,13 @@ Zlib.prototype._processChunk = function(chunk, flushFlag, cb) {
574574
req.callback = callback;
575575

576576
function callback(availInAfter, availOutAfter) {
577+
if (this) {
578+
// Don't hold onto the buffer and the callback
579+
// after they have been used.
580+
delete this.buffer;
581+
delete this.callback;
582+
}
583+
577584
if (self._hadError)
578585
return;
579586

0 commit comments

Comments
 (0)