mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-02-17 11:40:35 +01:00
Merge "Add default case for undefined pointer initialization" am: 9d0179c am: 27625f2 am: c3f7cf7
am: 0d9ca2d * commit '0d9ca2d051526199e875bcddeb8e8008872188a0': Add default case for undefined pointer initialization Change-Id: If945c473d032adaf2ea548978424b466c7dbed7c
This commit is contained in:
commit
0d4fdaa2d2
@ -904,6 +904,9 @@ static const FRAME_INFO v_frame_info4_8 = { 0, 4, {0, 2, 4, 6, 8}, {1, 1, 1, 1},
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
FDK_ASSERT(0);
|
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 */
|
/* look number of envelopes in table */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user