Skip to content
Snippets Groups Projects
Commit a907b350 authored by DONG Anyuan's avatar DONG Anyuan
Browse files

Fix Coverity Scan CID 261519 (Using uninitialized value tmp. Field tmp.elems...

Fix Coverity Scan CID 261519 (Using uninitialized value tmp. Field tmp.elems is uninitialized when calling _mm256_insert_epi16.)
parent dbcfda52
No related branches found
No related tags found
No related merge requests found
......@@ -933,7 +933,7 @@ unsigned char phy_threegpplte_turbo_decoder16avx2(int16_t *y,
uint32_t db;
__m256i tmp, zeros=_mm256_setzero_si256();
__m256i tmp=_mm256_setzero_si256(), zeros=_mm256_setzero_si256();
int offset8_flag=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment