Skip to content

Commit 51c1dfd

Browse files
committed
Shut CI up
1 parent 2b74c56 commit 51c1dfd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/engine/qcommon/msg.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,8 @@ std::string MSG_ReadString( msg_t *msg )
436436

437437
string.resize( size );
438438

439-
MSG_ReadData( msg, string.data(), size );
439+
void* fuckOffGCC = string.data();
440+
MSG_ReadData( msg, fuckOffGCC, size );
440441

441442
return string;
442443
}

src/engine/server/sv_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ void SV_ExecuteClientMessage( client_t *cl, msg_t *msg )
13381338
// NOTE: when the client message is fux0red the acknowledgement numbers
13391339
// can be out of range, this could cause the server to send thousands of server
13401340
// commands which the server thinks are not yet acknowledged in SV_UpdateServerCommandsToClient
1341-
if ( cl->reliableAcknowledge < 0 || cl->reliableAcknowledge > cl->reliableSequence )
1341+
if ( cl->reliableAcknowledge > cl->reliableSequence )
13421342
{
13431343
// usually only hackers create messages like this
13441344
// it is more annoying for them to let them hanging

0 commit comments

Comments
 (0)