experimental - fixes cryptlib order of operations warn

This commit is contained in:
DarthArgus
2015-10-13 11:35:51 -05:00
parent 2faaef7a22
commit a790a1a88d
@@ -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);
}
}