Merge "Destroy Allocation right away on exception" am: 52bc790f61 am: a37bef769a

am: fd9f091995

Change-Id: Ie83694e722af77c7fc324b8b850e4308f093ab04
This commit is contained in:
Yang Ni
2017-05-08 16:12:37 +00:00
committed by android-build-merger

View File

@@ -2895,6 +2895,7 @@ public class Allocation extends BaseObj {
mAllocationArray[0] = createTyped(rs, t, usage);
if ((usage & USAGE_IO_INPUT) != 0) {
if (numAlloc > MAX_NUMBER_IO_INPUT_ALLOC) {
mAllocationArray[0].destroy();
throw new RSIllegalArgumentException("Exceeds the max number of Allocations allowed: " +
MAX_NUMBER_IO_INPUT_ALLOC);
}