Skip to content

Commit

Permalink
Part #1253, Resolve UT uninit vars static analysis warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed May 18, 2022
1 parent bc6dd70 commit 2ffe351
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tests/network-api-test/network-api-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,11 @@ void TestDatagramNetworkApi(void)
char AddrBuffer2[32];
char AddrBuffer3[32];
char AddrBuffer4[32];
uint32 Buf1 = 111;
uint32 Buf2 = 000;
uint32 Buf3 = 222;
uint32 Buf4 = 000;
osal_id_t objid;
uint32 Buf1 = 111;
uint32 Buf2 = 0;
uint32 Buf3 = 222;
uint32 Buf4 = 0;
osal_id_t objid = OS_OBJECT_ID_UNDEFINED;
osal_id_t invalid_fd;
uint16 PortNum = 0;
OS_socket_prop_t prop;
Expand Down

0 comments on commit 2ffe351

Please sign in to comment.