Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 2143963

Browse files
committed
fix(pool): ensure workItem is not null before accessing properties
1 parent 6510d7d commit 2143963

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/connection/pool.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ function messageHandler(self) {
449449

450450
// Reset the connection timeout if we modified it for
451451
// this operation
452-
if (workItem.socketTimeout) {
452+
if (workItem && workItem.socketTimeout) {
453453
connection.resetSocketTimeout();
454454
}
455455

@@ -536,7 +536,7 @@ function messageHandler(self) {
536536
}
537537

538538
// Time to dispatch the message if we have a callback
539-
if (!workItem.immediateRelease) {
539+
if (workItem && !workItem.immediateRelease) {
540540
try {
541541
// Parse the message according to the provided options
542542
message.parse(workItem);

0 commit comments

Comments
 (0)