mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
202033c013
This adds 3 expat patches for n-asb-2022-09 from https://github.com/syphyr/android_external_expat/commits/cm-14.1 and also applies 2 of them to 15.1 Signed-off-by: Tad <tad@spotco.us>
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Chen Chen <cncn@google.com>
|
|
Date: Fri, 15 Apr 2022 14:24:48 -0700
|
|
Subject: [PATCH] Security: Fix out of bound write in HFP client
|
|
|
|
Bug: 224536184
|
|
Test: build
|
|
Tag: #security
|
|
Ignore-AOSP-First: Security bug
|
|
Change-Id: I9f0be0de6c4e1569095a43e92e9d8f9d73ca5fda
|
|
(cherry picked from commit 01136338f6d739226e027716b6e5304df379fa4c)
|
|
Merged-In: I9f0be0de6c4e1569095a43e92e9d8f9d73ca5fda
|
|
---
|
|
bta/hf_client/bta_hf_client_at.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/bta/hf_client/bta_hf_client_at.c b/bta/hf_client/bta_hf_client_at.c
|
|
index 76575f730..f790dd432 100644
|
|
--- a/bta/hf_client/bta_hf_client_at.c
|
|
+++ b/bta/hf_client/bta_hf_client_at.c
|
|
@@ -355,6 +355,10 @@ static void bta_hf_client_handle_cind_list_item(char *name, UINT32 min, UINT32 m
|
|
|
|
APPL_TRACE_DEBUG("%s %lu.%s <%lu:%lu>", __FUNCTION__, index, name, min, max);
|
|
|
|
+ if (index >= BTA_HF_CLIENT_AT_INDICATOR_COUNT) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
/* look for a matching indicator on list of supported ones */
|
|
for(i = 0; i < BTA_HF_CLIENT_AT_SUPPORTED_INDICATOR_COUNT; i++)
|
|
{
|