mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	am: Correct ListDLCContentInfos index bounds.
This commit is contained in:
		
							parent
							
								
									d93ed644f6
								
							
						
					
					
						commit
						4c3961d5dd
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		|  | @ -592,9 +592,10 @@ void Module::Interface::ListDLCContentInfos(Kernel::HLERequestContext& ctx) { | |||
|     u32 copied = 0; | ||||
|     FileSys::TitleMetadata tmd; | ||||
|     if (tmd.Load(tmd_path) == Loader::ResultStatus::Success) { | ||||
|         copied = std::min(content_count, static_cast<u32>(tmd.GetContentCount())); | ||||
|         u32 end_index = | ||||
|             std::min(start_index + content_count, static_cast<u32>(tmd.GetContentCount())); | ||||
|         std::size_t write_offset = 0; | ||||
|         for (u32 i = start_index; i < start_index + copied; i++) { | ||||
|         for (u32 i = start_index; i < end_index; i++) { | ||||
|             std::shared_ptr<FileUtil::IOFile> romfs_file; | ||||
|             u64 romfs_offset = 0; | ||||
| 
 | ||||
|  | @ -612,6 +613,7 @@ void Module::Interface::ListDLCContentInfos(Kernel::HLERequestContext& ctx) { | |||
| 
 | ||||
|             content_info_out.Write(&content_info, write_offset, sizeof(ContentInfo)); | ||||
|             write_offset += sizeof(ContentInfo); | ||||
|             copied++; | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue