Skip to content

Commit

Permalink
fix: fix clobbering of privateResult
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed Oct 12, 2024
1 parent b8691a3 commit 9004231
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Crash/PDB/PdbHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,9 @@ namespace Crash
result = privateResult;
}
privateSymbol->Release();
} else {
result = publicResult;
}
result = publicResult;
}
publicSymbol->Release();
pSession->Release();
Expand Down

0 comments on commit 9004231

Please sign in to comment.