Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: MEMORY LEAK #1120

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions lib/make-middleware.js
Expand Up @@ -42,10 +42,16 @@ function makeMiddleware (setup) {
var pendingWrites = new Counter()
var uploadedFiles = []

function requestError(error) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
function requestError(error) {
function requestError (error) {

if(!busboy) return
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

busboy should always be defined here?

Suggested change
if(!busboy) return

busboy.destroy(error)
}

function done (err) {
if (isDone) return
isDone = true

req.removeListener('error', requestError)
req.unpipe(busboy)
drainStream(req)
busboy.removeAllListeners()
Expand Down Expand Up @@ -174,6 +180,7 @@ function makeMiddleware (setup) {
indicateDone()
})

req.on('error', requestError)
req.pipe(busboy)
}
}
Expand Down