summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorWei Jia <wjia@google.com>2015-08-04 18:19:37 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-08-04 18:19:37 +0000
commit42bd61d73e8b4d0b1101e73324a59fde51077112 (patch)
tree37ebbb34765f9672686029623156327491cb57f6 /media
parent98ee4c01d3843c1973c399404b7166431eadedb9 (diff)
parentd9a9a324766b26be2ff0d10537ea0b215b0261e3 (diff)
downloadframeworks_av-42bd61d73e8b4d0b1101e73324a59fde51077112.zip
frameworks_av-42bd61d73e8b4d0b1101e73324a59fde51077112.tar.gz
frameworks_av-42bd61d73e8b4d0b1101e73324a59fde51077112.tar.bz2
am d9a9a324: am 10ef7f75: am b0924c63: am 7af634e1: am 8ec119d2: am d138024f: am b32957db: am a9d7c917: am a99d3d83: am 738a753a: SampleTable: fix integer overflow checks.
* commit 'd9a9a324766b26be2ff0d10537ea0b215b0261e3': SampleTable: fix integer overflow checks.
Diffstat (limited to 'media')
-rw-r--r--media/libstagefright/SampleTable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libstagefright/SampleTable.cpp b/media/libstagefright/SampleTable.cpp
index a7ceecb..52ce82b 100644
--- a/media/libstagefright/SampleTable.cpp
+++ b/media/libstagefright/SampleTable.cpp
@@ -333,7 +333,7 @@ status_t SampleTable::setTimeToSampleParams(
}
mTimeToSampleCount = U32_AT(&header[4]);
- uint64_t allocSize = mTimeToSampleCount * 2 * (uint64_t)sizeof(uint32_t);
+ uint64_t allocSize = (uint64_t)mTimeToSampleCount * 2 * sizeof(uint32_t);
if (allocSize > SIZE_MAX) {
return ERROR_OUT_OF_RANGE;
}
@@ -379,7 +379,7 @@ status_t SampleTable::setCompositionTimeToSampleParams(
}
mNumCompositionTimeDeltaEntries = numEntries;
- uint64_t allocSize = numEntries * 2 * (uint64_t)sizeof(uint32_t);
+ uint64_t allocSize = (uint64_t)numEntries * 2 * sizeof(uint32_t);
if (allocSize > SIZE_MAX) {
return ERROR_OUT_OF_RANGE;
}