mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-28 22:15:49 -04:00
fix some more warns
This commit is contained in:
@@ -27,7 +27,7 @@ namespace DB
|
||||
* Default constructor stored the current system time in eventTime.
|
||||
*/
|
||||
LogEvent();
|
||||
|
||||
virtual ~LogEvent(){return;};
|
||||
public:
|
||||
/**
|
||||
* Saves the LogEvent to the database.
|
||||
|
||||
@@ -51,7 +51,7 @@ void StreamCipher::ProcessString(byte *outString, const byte *inString, unsigned
|
||||
void StreamCipher::ProcessString(byte *inoutString, unsigned int length)
|
||||
{
|
||||
while(length--)
|
||||
*inoutString++ = ProcessByte(*inoutString);
|
||||
*inoutString++ = ProcessByte(*inoutString); //TODO: order of operations issue here, per the warning
|
||||
}
|
||||
|
||||
bool HashModule::Verify(const byte *digestIn)
|
||||
|
||||
Reference in New Issue
Block a user