Fix for HTTPCLIENT-1080. Comment out dead code.

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1419348 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Karl Wright 2012-12-10 11:28:44 +00:00
parent 460a604487
commit c98900ebd8
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
Changes in trunk Changes in trunk
------------------- -------------------
* [HTTPCLIENT-1080] NTLM dead code commented out.
Contributed by Karl Wright <DaddyWri at gmail.com>
* [HTTPCLIENT-1268] NTLM engine refactor fix, to correct a buffer overrun. * [HTTPCLIENT-1268] NTLM engine refactor fix, to correct a buffer overrun.
Contributed by Karl Wright <DaddyWri at gmail.com> Contributed by Karl Wright <DaddyWri at gmail.com>

View File

@ -1395,7 +1395,7 @@ final class NTLMEngineImpl implements NTLMEngine {
int transferAmt = input.length - inputIndex; int transferAmt = input.length - inputIndex;
System.arraycopy(input, inputIndex, dataBuffer, curBufferPos, transferAmt); System.arraycopy(input, inputIndex, dataBuffer, curBufferPos, transferAmt);
count += transferAmt; count += transferAmt;
curBufferPos += transferAmt; //curBufferPos += transferAmt;
} }
} }