Use nullptr in more places

(This is a merge of http://go/wvgerrit/139630.)

This patch fixes a few places that were using NULL or 0 instead of
nullptr.

Bug: 207702482
Test: x86-64 build
Change-Id: I10e19febebd093fe4445208a082216002d9a4482
This commit is contained in:
John "Juce" Bruce
2021-12-01 11:58:05 -08:00
parent bfd299a4be
commit c43b9fc3de
2 changed files with 2 additions and 2 deletions

View File

@@ -602,7 +602,7 @@ class Session {
// order to verify signatures.
void GenerateReport(const std::string& pst,
OEMCryptoResult expected_result = OEMCrypto_SUCCESS,
Session* other = 0);
Session* other = nullptr);
// Move this usage entry to a new index.
void MoveUsageEntry(uint32_t new_index, std::vector<uint8_t>* header_buffer,
OEMCryptoResult expect_result = OEMCrypto_SUCCESS);