Skip to content

Commit

Permalink
[AMDVLK-357] Fix the warning passing NULL to non-pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaojbao committed Apr 10, 2024
1 parent 42e29f4 commit 2682a91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/hw/gfxip/gfx9/gfx9UniversalCmdBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10152,7 +10152,7 @@ uint32 UniversalCmdBuffer::BuildExecuteIndirectIb2Packets(
drawIndexReg,
1,
pParamData[cmdIndex].argBufSize,
NULL,
0uLL,
PacketPredicate(),
usesLegacyMsFastLaunch,
pDeCmdIb2Space);
Expand All @@ -10164,7 +10164,7 @@ uint32 UniversalCmdBuffer::BuildExecuteIndirectIb2Packets(
drawIndexReg,
1,
pParamData[cmdIndex].argBufSize,
NULL,
0uLL,
PacketPredicate(),
usesLegacyMsFastLaunch,
pDeCmdIb2Space);
Expand Down

0 comments on commit 2682a91

Please sign in to comment.