File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ Parser.prototype._parseString = function(maybeBuffer) {
352352 , result
353353 , end = length + this . _pos
354354
355- if ( length === - 1 || end > this . _list . length || end > this . packet . length )
355+ if ( length === - 1 || end > this . _list . length || end > this . packet . length )
356356 return null
357357
358358 result = this . _list . toString ( 'utf8' , this . _pos , end )
@@ -367,7 +367,7 @@ Parser.prototype._parseBuffer = function() {
367367 , result
368368 , end = length + this . _pos
369369
370- if ( length === - 1 || end > this . _list . length || end > this . packet . length )
370+ if ( length === - 1 || end > this . _list . length || end > this . packet . length )
371371 return null
372372
373373 result = this . _list . slice ( this . _pos , end )
You can’t perform that action at this time.
0 commit comments