mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-29 23:15:56 -04:00
experimental - fixes cryptlib order of operations warn
This commit is contained in:
@@ -51,7 +51,7 @@ void StreamCipher::ProcessString(byte *outString, const byte *inString, unsigned
|
||||
void StreamCipher::ProcessString(byte *inoutString, unsigned int length)
|
||||
{
|
||||
while(length--) {
|
||||
*inoutString++;
|
||||
(*inoutString)++;
|
||||
*inoutString = ProcessByte(*inoutString);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user