From a790a1a88d0e76dc34de3b75621c10dcded43d71 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Tue, 13 Oct 2015 11:35:51 -0500 Subject: [PATCH] experimental - fixes cryptlib order of operations warn --- external/ours/library/crypto/src/shared/original/cryptlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/ours/library/crypto/src/shared/original/cryptlib.cpp b/external/ours/library/crypto/src/shared/original/cryptlib.cpp index 4341b5b7..86e2d4d3 100644 --- a/external/ours/library/crypto/src/shared/original/cryptlib.cpp +++ b/external/ours/library/crypto/src/shared/original/cryptlib.cpp @@ -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); } }