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:
parent
460a604487
commit
c98900ebd8
|
@ -1,6 +1,9 @@
|
|||
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.
|
||||
Contributed by Karl Wright <DaddyWri at gmail.com>
|
||||
|
||||
|
|
|
@ -1395,7 +1395,7 @@ final class NTLMEngineImpl implements NTLMEngine {
|
|||
int transferAmt = input.length - inputIndex;
|
||||
System.arraycopy(input, inputIndex, dataBuffer, curBufferPos, transferAmt);
|
||||
count += transferAmt;
|
||||
curBufferPos += transferAmt;
|
||||
//curBufferPos += transferAmt;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue