We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed5a98c commit ebd8f41Copy full SHA for ebd8f41
SourceQuery/Socket.class.php
@@ -139,9 +139,9 @@ public function Read( $Length = 1400 )
139
throw new RuntimeException( 'Received compressed packet, PHP doesn\'t have Bzip2 library installed, can\'t decompress.' );
140
}
141
142
- $Data = bzdecompress( $Data );
+ $Buffer = bzdecompress( $Buffer );
143
144
- if( CRC32( $Data ) !== $PacketChecksum )
+ if( CRC32( $Buffer ) !== $PacketChecksum )
145
{
146
throw new SourceQueryException( 'CRC32 checksum mismatch of uncompressed packet data.' );
147
0 commit comments