summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrago <rago@google.com>2016-11-30 19:28:51 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-11-30 19:28:51 +0000
commit4654f9ab8bedb3d6a4b3678592fe884487fb89b4 (patch)
tree3796021a7f14feead0b58601daaa01c5851b6842
parent6e98ba09a2722b8aa9242797c379016e0bb42de7 (diff)
parent559dbde531da83059b9ed2a216edbb21f985ad8e (diff)
downloadlibhardware-4654f9ab8bedb3d6a4b3678592fe884487fb89b4.tar.gz
Fix security vulnerability: potential OOB write in audioserver am: 3f9a6d3bd9 am: 28d8817df3 am: 750a6a4ed8
am: 559dbde531 Change-Id: I800e527ba948c4416aeee1375e909f7da6f42a71
-rw-r--r--include/hardware/audio_effect.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hardware/audio_effect.h b/include/hardware/audio_effect.h
index ee48e4ca..bd9a5b73 100644
--- a/include/hardware/audio_effect.h
+++ b/include/hardware/audio_effect.h
@@ -895,6 +895,9 @@ typedef struct effect_param_s {
char data[]; // Start of Parameter + Value data
} effect_param_t;
+// Maximum effect_param_t size
+#define EFFECT_PARAM_SIZE_MAX 65536
+
// structure used by EFFECT_CMD_OFFLOAD command
typedef struct effect_offload_param_s {
bool isOffload; // true if the playback thread the effect is attached to is offloaded