mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-06-05 22:39:13 +02:00
am: c3f7cf7
* commit 'c3f7cf7f1b8987a873ceea8c1b45206dd611e425':
Add default case for undefined pointer initialization
Change-Id: I11a5787070f3be7f2d476ec1ebd54c1d41ce7dc2
This commit is contained in:
@ -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 */
|
||||||
|
Reference in New Issue
Block a user