Skip to content

Commit

Permalink
remove indirection check
Browse files Browse the repository at this point in the history
  • Loading branch information
bob80905 committed Jan 11, 2025
1 parent 819f345 commit 7dc1d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/DxilContainer/DxcContainerBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ HRESULT STDMETHODCALLTYPE DxcContainerBuilder::RemovePart(UINT32 fourCC) {
HRESULT STDMETHODCALLTYPE
DxcContainerBuilder::SerializeContainer(IDxcOperationResult **ppResult) {
DxcThreadMalloc TM(m_pMalloc);
if (ppResult == nullptr || *ppResult == nullptr)
if (ppResult == nullptr)
return E_INVALIDARG;

try {
Expand Down

0 comments on commit 7dc1d0d

Please sign in to comment.