You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avstring: Fix isxdigit to not accept non-hex characters
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
		| @@ -231,7 +231,7 @@ int av_isspace(int c) | ||||
| int av_isxdigit(int c) | ||||
| { | ||||
|     c = av_tolower(c); | ||||
|     return av_isdigit(c) || (c >= 'a' && c <= 'z'); | ||||
|     return av_isdigit(c) || (c >= 'a' && c <= 'f'); | ||||
| } | ||||
|  | ||||
| #ifdef TEST | ||||
|   | ||||
		Reference in New Issue
	
	Block a user