Skip to content

Commit

Permalink
lib: simplify 'processChunkSync'
Browse files Browse the repository at this point in the history
According to the real logic codes, it seems no matter whether 'nread >=
kMaxLength' or not. We always close the 'self' stream first. So we can
shorten it by merging them into one sample.

PR-URL: #22802
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Weijia Wang <[email protected]>
  • Loading branch information
MaleDong authored and targos committed Sep 19, 2018
1 parent e9b5c34 commit 2550015
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/zlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,14 +527,12 @@ function processChunkSync(self, chunk, flushFlag) {
}

self.bytesWritten = inputRead;
_close(self);

if (nread >= kMaxLength) {
_close(self);
throw new ERR_BUFFER_TOO_LARGE();
}

_close(self);

if (nread === 0)
return Buffer.alloc(0);

Expand Down

0 comments on commit 2550015

Please sign in to comment.