mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	network/packet: Fix reading vectors/arrays of strings
Previously would break here, as it is trying to initialize a string with 0, which is then considered NULL.
This commit is contained in:
		
							parent
							
								
									8b8b39ec0e
								
							
						
					
					
						commit
						94be4050bc
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -126,7 +126,7 @@ Packet& Packet::operator>>(std::vector<T>& out_data) { | |||
| 
 | ||||
|     // Then extract the data
 | ||||
|     for (std::size_t i = 0; i < out_data.size(); ++i) { | ||||
|         T character = 0; | ||||
|         T character; | ||||
|         *this >> character; | ||||
|         out_data[i] = character; | ||||
|     } | ||||
|  | @ -136,7 +136,7 @@ Packet& Packet::operator>>(std::vector<T>& out_data) { | |||
| template <typename T, std::size_t S> | ||||
| Packet& Packet::operator>>(std::array<T, S>& out_data) { | ||||
|     for (std::size_t i = 0; i < out_data.size(); ++i) { | ||||
|         T character = 0; | ||||
|         T character; | ||||
|         *this >> character; | ||||
|         out_data[i] = character; | ||||
|     } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue