engine: temporarily disable ASan in MSG_WriteUBitLong (evil!)

This commit is contained in:
Alibek Omarov
2024-06-09 07:03:55 +03:00
parent f9dab2ad19
commit 767556ccad
2 changed files with 5 additions and 10 deletions

View File

@@ -174,7 +174,7 @@ void MSG_ExciseBits( sizebuf_t *sb, int startbit, int bitstoremove );
// Bit-write functions
void MSG_WriteOneBit( sizebuf_t *sb, int nValue );
void MSG_WriteUBitLong( sizebuf_t *sb, uint curData, int numbits );
void MSG_WriteUBitLong( sizebuf_t *sb, uint curData, int numbits ) NO_ASAN;
void MSG_WriteSBitLong( sizebuf_t *sb, int data, int numbits );
void MSG_WriteBitLong( sizebuf_t *sb, uint data, int numbits, qboolean bSigned );
qboolean MSG_WriteBits( sizebuf_t *sb, const void *pData, int nBits );