You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	postprocess.c: filter name needs to be double 0 terminated
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
This commit is contained in:
		
				
					committed by
					
						 Reinhard Tartler
						Reinhard Tartler
					
				
			
			
				
	
			
			
			
						parent
						
							0249478756
						
					
				
				
					commit
					f4f3300c09
				
			| @@ -731,7 +731,8 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality) | ||||
|     ppMode->maxClippedThreshold= 0.01; | ||||
|     ppMode->error=0; | ||||
|  | ||||
|     av_strlcpy(temp, name, GET_MODE_BUFFER_SIZE); | ||||
|     memset(temp, 0, GET_MODE_BUFFER_SIZE); | ||||
|     av_strlcpy(temp, name, GET_MODE_BUFFER_SIZE - 1); | ||||
|  | ||||
|     av_log(NULL, AV_LOG_DEBUG, "pp: %s\n", name); | ||||
|  | ||||
| @@ -787,7 +788,7 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality) | ||||
|  | ||||
|                 plen= strlen(p); | ||||
|                 spaceLeft= p - temp + plen; | ||||
|                 if(spaceLeft + newlen  >= GET_MODE_BUFFER_SIZE){ | ||||
|                 if(spaceLeft + newlen  >= GET_MODE_BUFFER_SIZE - 1){ | ||||
|                     ppMode->error++; | ||||
|                     break; | ||||
|                 } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user