Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions lib/make-middleware.js
Original file line number Diff line number Diff line change
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