mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	Audit ast_json_pack() calls for needed UTF-8 checks.
Added needed UTF-8 checks before constructing json objects in various files for strings obtained outside the system. In this case string values from a channel driver's peer and not from the user setting channel variables. * aoc.c: Fixed type mismatch in s_to_json() for time and granularity json object construction. ASTERISK-26466 Reported by: Richard Mudgett Change-Id: Iac2d867fa598daba5c5dbc619b5464625a7f2096
This commit is contained in:
		| @@ -1237,10 +1237,10 @@ static void cel_parking_cb( | ||||
|  | ||||
| 	if (parked_payload->retriever) { | ||||
| 		extra = ast_json_pack("{s: s, s: s}", | ||||
| 			"reason", reason, | ||||
| 			"reason", reason ?: "", | ||||
| 			"retriever", parked_payload->retriever->name); | ||||
| 	} else { | ||||
| 		extra = ast_json_pack("{s: s}", "reason", reason); | ||||
| 		extra = ast_json_pack("{s: s}", "reason", reason ?: ""); | ||||
| 	} | ||||
|  | ||||
| 	if (extra) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user