diff --git a/lib/Parser.js b/lib/Parser.js index ea90b81..6870274 100644 --- a/lib/Parser.js +++ b/lib/Parser.js @@ -165,7 +165,6 @@ Parser.prototype._resTagged = function() { // non-BODY literal -- buffer it this._buffer = this._buffer.replace(RE_LITERAL, LITPLACEHOLDER); this._literallen = parseInt(m[1], 10); - this._tryread(this._literallen); } else { var m = RE_TAGGED.exec(this._buffer), tagnum = parseInt(m[1], 10), @@ -204,7 +203,6 @@ Parser.prototype._resUntagged = function() { // non-BODY literal -- buffer it this._buffer = this._buffer.replace(RE_LITERAL, LITPLACEHOLDER); this._literallen = parseInt(m[1], 10); - this._tryread(this._literallen); } else if (m = RE_UNTAGGED.exec(this._buffer)) { this._buffer = ''; // normal single line response