Skip to content
This repository was archived by the owner on Oct 31, 2022. It is now read-only.

Commit f2fcf69

Browse files
committed
Initialize variable before function call to silence Visual Studio analyzer
1 parent f0c4160 commit f2fcf69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/DXTBlocks.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static void hap_cpuid(int info[4],int infoType){
6161

6262
int HapCodecHasSSSE3(void)
6363
{
64-
int info[4];
64+
int info[4] = { 0, 0, 0, 0 };
6565
int hasSSE2, hasSSE3, hasSSSE3;
6666

6767
hap_cpuid(info,0x00000001);

0 commit comments

Comments
 (0)