Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolving resource leaks warnings #8

Open
wants to merge 2 commits into
base: release/main_aig
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions driver/src/common/xaie_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -1440,6 +1440,7 @@ u8* _XAie_TxnExportSerialized(XAie_DevInst *DevInst, u8 NumConsumers,
(AllocatedBuffSize) * 2U, BuffSize);
if(TxnPtr == NULL) {
printf("Realloc Failed\n");
free(blockwrite_buffer);
return NULL;
}
AllocatedBuffSize *= 2U;
Expand Down Expand Up @@ -1562,6 +1563,7 @@ u8* _XAie_TxnExportSerialized(XAie_DevInst *DevInst, u8 NumConsumers,
(BW_Buff_AllocatedSize) * 2U, BW_Buff_Size) );
if(blockwrite_buffer == NULL) {
printf("Realloc Failed\n");
free(TxnPtr);
return NULL;
}
BW_Buff_AllocatedSize *= 2U;
Expand Down Expand Up @@ -2644,6 +2646,7 @@ AieRC XAie_AddCustomTxnOp(XAie_DevInst *DevInst, u8 OpNumber, void* Args, size_t
if(TxnInst->NumCmds + 1U == TxnInst->MaxCmds) {
RC = _XAie_ReallocCmdBuf(TxnInst);
if (RC != XAIE_OK) {
free(tmpBuff);
return RC;
}

Expand Down