mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	web_service: avoid undefined behavior assert of std::string::back (#7347)
Co-authored-by: BuildTools <unconfigured@null.spigotmc.org>
This commit is contained in:
		
							parent
							
								
									a177769c3b
								
							
						
					
					
						commit
						da9f382d2c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -30,7 +30,7 @@ struct Client::Impl { | |||
|             jwt = jwt_cache.jwt; | ||||
|         } | ||||
|         // normalize host expression
 | ||||
|         if (this->host.back() == '/') { | ||||
|         if (!this->host.empty() && this->host.back() == '/') { | ||||
|             static_cast<void>(this->host.pop_back()); | ||||
|         } | ||||
|     } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue