Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitov authored Feb 16, 2023
1 parent 737e712 commit 2f1f21c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3248,7 +3248,7 @@ function decodeResponse(data, callback, cnx, lowercase_keys, cb) {
data.readBuffer((4 - nullBitsLen) & 3, false); // Skip padding
}

for (length = output.length; data.fcolumn < length; data.fcolumn++) {
for (let length = output.length; data.fcolumn < length; data.fcolumn++) {
item = output[data.fcolumn];

if (!lowerV13 && nullBitSet.get(data.fcolumn)) {
Expand Down

0 comments on commit 2f1f21c

Please sign in to comment.