Updated the CTS test for Android Security b/112661742

Bug: 112661742
Bug: 137951738
Bug: 161014225
Bug: 173026466
Test: Ran the new testcase on android-10.0.0_r2 with/without patch

Change-Id: I7324a2ada5aa10e6a96e35c8c09a04cda66cf18b
diff --git a/hostsidetests/securitybulletin/securityPatch/CVE-2019-9308/poc.cpp b/hostsidetests/securitybulletin/securityPatch/CVE-2019-9308/poc.cpp
index 59f72ed..21eaf53 100644
--- a/hostsidetests/securitybulletin/securityPatch/CVE-2019-9308/poc.cpp
+++ b/hostsidetests/securitybulletin/securityPatch/CVE-2019-9308/poc.cpp
@@ -67,8 +67,7 @@
     aacDecoder_Fill(mAacDecoderHandle, &data, &inputSize, &valid);
     INT_PCM outputBuf[kMaxOutBufferSize];
     do {
-      mErrorCode = aacDecoder_DecodeFrame(mAacDecoderHandle, outputBuf,
-                                          sizeof(outputBuf), 0);
+        mErrorCode = aacDecoder_DecodeFrame(mAacDecoderHandle, outputBuf, kMaxOutBufferSize, 0);
     } while (mErrorCode == AAC_DEC_OK);
     UINT offset = inputSize - valid;
     data += offset;