mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	fix(net): prevent gibberish padding on linux
This commit is contained in:
		
							parent
							
								
									8e3c7674d8
								
							
						
					
					
						commit
						f8eb4b7edc
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -912,7 +912,7 @@ void Room::RoomImpl::HandleChatPacket(const ENetEvent* event) { | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     // Limit the size of chat messages to MaxMessageSize
 |     // Limit the size of chat messages to MaxMessageSize
 | ||||||
|     message.resize(MaxMessageSize); |     message.resize(std::min(static_cast<u32>(message.size()), MaxMessageSize)); | ||||||
| 
 | 
 | ||||||
|     Packet out_packet; |     Packet out_packet; | ||||||
|     out_packet << static_cast<u8>(IdChatMessage); |     out_packet << static_cast<u8>(IdChatMessage); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue