mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Add check if filter is not a nullptr
Fix segfault and pass tests
This commit is contained in:
		
							parent
							
								
									c4f98c1a2e
								
							
						
					
					
						commit
						2b4998a122
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -140,7 +140,7 @@ void SetFilter(Filter* new_filter) { | |||
| 
 | ||||
| void LogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num, | ||||
|                 const char* function, const char* format, ...) { | ||||
|     if (!filter->CheckMessage(log_class, log_level)) | ||||
|     if (filter != nullptr && !filter->CheckMessage(log_class, log_level)) | ||||
|         return; | ||||
|     std::array<char, 4 * 1024> formatting_buffer; | ||||
|     va_list args; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue