mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
082bc48c32
https://review.lineageos.org/q/topic:P_asb_2022-05 https://review.lineageos.org/q/topic:P_asb_2022-06 https://review.lineageos.org/q/topic:P_asb_2022-07 https://review.lineageos.org/q/topic:P_asb_2022-08 https://review.lineageos.org/q/topic:P_asb_2022-09 https://review.lineageos.org/q/topic:P_asb_2022-10 https://review.lineageos.org/q/topic:P_asb_2022-11 https://review.lineageos.org/q/topic:P_asb_2022-12 https://review.lineageos.org/q/topic:P_asb_2023-01 https://review.lineageos.org/q/topic:P_asb_2023-02 https://review.lineageos.org/q/topic:P_asb_2023-03 https://review.lineageos.org/q/topic:P_asb_2023-04 https://review.lineageos.org/q/topic:P_asb_2023-05 https://review.lineageos.org/q/topic:P_asb_2023-06 https://review.lineageos.org/q/topic:P_asb_2023-07 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_freetype/+/361250 https://review.lineageos.org/q/topic:P_asb_2023-08 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_freetype/+/364606 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/365328 https://review.lineageos.org/q/topic:P_asb_2023-09 https://review.lineageos.org/q/topic:P_asb_2023-10 https://review.lineageos.org/q/topic:P_asb_2023-11 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/374916 https://review.lineageos.org/q/topic:P_asb_2023-12 https://review.lineageos.org/q/topic:P_asb_2024-01 https://review.lineageos.org/q/topic:P_asb_2024-02 https://review.lineageos.org/q/topic:P_asb_2024-03 https://review.lineageos.org/q/topic:P_asb_2024-04 Signed-off-by: Tavi <tavi@divested.dev>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Alisher Alikhodjaev <alisher@google.com>
|
|
Date: Wed, 26 Oct 2022 14:03:48 -0700
|
|
Subject: [PATCH] DO NOT MERGE OOBW in Mfc_Transceive()
|
|
|
|
Bug: 241387741
|
|
Test: build ok
|
|
Change-Id: Idf45b940ac21eeb4cf09c222988bfce22b0bef55
|
|
(cherry picked from commit f5f24d0ea2bcc33f18915c4c7369f803c45e53b0)
|
|
Merged-In: Idf45b940ac21eeb4cf09c222988bfce22b0bef55
|
|
---
|
|
nci/jni/extns/pn54x/src/mifare/phNxpExtns_MifareStd.cpp | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/nci/jni/extns/pn54x/src/mifare/phNxpExtns_MifareStd.cpp b/nci/jni/extns/pn54x/src/mifare/phNxpExtns_MifareStd.cpp
|
|
index f5b94225..7c0a6777 100644
|
|
--- a/nci/jni/extns/pn54x/src/mifare/phNxpExtns_MifareStd.cpp
|
|
+++ b/nci/jni/extns/pn54x/src/mifare/phNxpExtns_MifareStd.cpp
|
|
@@ -999,6 +999,11 @@ NFCSTATUS Mfc_Transceive(uint8_t* p_data, uint32_t len) {
|
|
return status;
|
|
}
|
|
|
|
+ if (len > (MAX_BUFF_SIZE * 2)) {
|
|
+ android_errorWriteLog(0x534e4554, "241387741");
|
|
+ return status;
|
|
+ }
|
|
+
|
|
gphNxpExtns_Context.RawWriteCallBack = false;
|
|
gphNxpExtns_Context.CallBackMifare = NULL;
|
|
gphNxpExtns_Context.CallBackCtxt = NdefMap;
|