Skip to content

Commit 30e5a44

Browse files
committed
fix a global leak
1 parent 933c82f commit 30e5a44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mongodb/bson/binary_parser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ p.encode_int64 = function(number) {
189189
p.decode_utf8 = function(a) {
190190
var string = "";
191191
var i = 0;
192-
var c, c1, c2;
192+
var c, c1, c2, c3;
193193
c = c1 = c2 = 0;
194194

195195
while ( i < a.length ) {

0 commit comments

Comments
 (0)