Skip to content

Commit

Permalink
missing null check in Fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
jdelapla committed Dec 10, 2021
1 parent e43efa3 commit df6f93d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/source/Signaling/Client.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ STATUS signalingClientFetchSync(SIGNALING_CLIENT_HANDLE signalingClientHandle)
UINT64 signalingClientCreationWaitTime;

DLOGV("Signaling Client Fetch Sync");
CHK(pSignalingClient != NULL, STATUS_NULL_ARG);

// Convert the client info to the internal structure with empty values
MEMSET(&signalingClientInfoInternal, 0x00, SIZEOF(signalingClientInfoInternal));
Expand Down

0 comments on commit df6f93d

Please sign in to comment.