Skip to content

Commit

Permalink
MEMALLOC instead of MALLOC
Browse files Browse the repository at this point in the history
  • Loading branch information
sirknightj authored Oct 26, 2024
1 parent de95a69 commit 03e6977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/Common.c
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ STATUS lookForSslCert(PSampleConfiguration* ppSampleConfiguration)
STATUS createSampleConfiguration(PCHAR channelName, SIGNALING_CHANNEL_ROLE_TYPE roleType, BOOL trickleIce, BOOL useTurn, UINT32 logLevel,
PSampleConfiguration* ppSampleConfiguration)
{
PVOID test = MALLOC(10000); // Test memory leak
PVOID test = MEMALLOC(10000); // Test memory leak
STATUS retStatus = STATUS_SUCCESS;
PCHAR pAccessKey, pSecretKey, pSessionToken;
PSampleConfiguration pSampleConfiguration = NULL;
Expand Down

0 comments on commit 03e6977

Please sign in to comment.