mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From 6cabf9c6ba281ab44a6b94f0b5f8c3c2026416f9 Mon Sep 17 00:00:00 2001
|
|
From: Courtney Goeltzenleuchter <courtneygo@google.com>
|
|
Date: Thu, 24 May 2018 08:23:55 -0600
|
|
Subject: [PATCH] Fix Buffer Overflow in Vendor Service display.qservice
|
|
|
|
Bug: 63145942
|
|
Test: adb shell vndservice call display.qservice 36 s16 sdlkfjsadlfkjasdf
|
|
Change-Id: I3fdf5ccd2bf4ed0fa980883fefdb57eb5fbfeee7
|
|
(cherry picked from commit 4050091844ccd427587024e5fd916113a5cc0029)
|
|
---
|
|
sdm/libs/hwc2/hwc_session.cpp | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/sdm/libs/hwc2/hwc_session.cpp b/sdm/libs/hwc2/hwc_session.cpp
|
|
index 5f825c19b..e4b687d6b 100644
|
|
--- a/sdm/libs/hwc2/hwc_session.cpp
|
|
+++ b/sdm/libs/hwc2/hwc_session.cpp
|
|
@@ -1226,6 +1226,11 @@ android::status_t HWCSession::SetColorModeOverride(const android::Parcel *input_
|
|
auto display = static_cast<hwc2_display_t >(input_parcel->readInt32());
|
|
auto mode = static_cast<android_color_mode_t>(input_parcel->readInt32());
|
|
auto device = static_cast<hwc2_device_t *>(this);
|
|
+
|
|
+ if (display > HWC_DISPLAY_VIRTUAL) {
|
|
+ return -EINVAL;
|
|
+ }
|
|
+
|
|
auto err = CallDisplayFunction(device, display, &HWCDisplay::SetColorMode, mode);
|
|
if (err != HWC2_ERROR_NONE)
|
|
return -EINVAL;
|