[SurfaceFlinger] Allow opcode 1030 to pass.
BUG: 111505327
Test: Build, flash, boot and test with Settings.
Change-Id: I9adbecdab42d82e28a4ccfff3085522508373212
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp
index 4a96e89..b7233f5 100644
--- a/services/surfaceflinger/SurfaceFlinger.cpp
+++ b/services/surfaceflinger/SurfaceFlinger.cpp
@@ -4778,9 +4778,9 @@
code == IBinder::SYSPROPS_TRANSACTION) {
return OK;
}
- // Numbers from 1000 to 1029 are currently use for backdoors. The code
+ // Numbers from 1000 to 1030 are currently use for backdoors. The code
// in onTransact verifies that the user is root, and has access to use SF.
- if (code >= 1000 && code <= 1029) {
+ if (code >= 1000 && code <= 1030) {
ALOGV("Accessing SurfaceFlinger through backdoor code: %u", code);
return OK;
}