mirror of https://github.com/mstorsjo/fdk-aac.git
Merge "Add default case for undefined pointer initialization" am: 9d0179c
am: 27625f2
* commit '27625f27066421ce38250272f4bb751cf6f58c17':
Add default case for undefined pointer initialization
Change-Id: I601dc2afdfa8db2008628e05068d277a617c022d
This commit is contained in:
commit
c3f7cf7f1b
|
@ -904,6 +904,9 @@ static const FRAME_INFO v_frame_info4_8 = { 0, 4, {0, 2, 4, 6, 8}, {1, 1, 1, 1},
|
|||
break;
|
||||
default:
|
||||
FDK_ASSERT(0);
|
||||
/* in case assertion checks are disabled, force a definite memory fault at first access */
|
||||
pTable = NULL;
|
||||
break;
|
||||
}
|
||||
|
||||
/* look number of envelopes in table */
|
||||
|
|
Loading…
Reference in New Issue