mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 18:54:14 +01:00 
			
		
		
		
	service: mii: Limit checks to string size
This commit is contained in:
		
							parent
							
								
									0993c71335
								
							
						
					
					
						commit
						bb28f4a0c4
					
				| @ -614,7 +614,7 @@ struct Nickname { | ||||
|         } | ||||
| 
 | ||||
|         std::size_t index = 1; | ||||
|         while (data[index] != 0) { | ||||
|         while (index < MaxNameSize && data[index] != 0) { | ||||
|             index++; | ||||
|         } | ||||
|         while (index < MaxNameSize && data[index] == 0) { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user