Commit 9d0179c8 authored by Glenn Kasten's avatar Glenn Kasten Committed by Gerrit Code Review

Merge "Add default case for undefined pointer initialization"

parents 6ae54806 1dd76496
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment