Merge pull request #47444 from cjolivier01:envfix
PiperOrigin-RevId: 360915048 Change-Id: Icccb28a94e91c4ab7015f416be4cfeb6bd4722a9
This commit is contained in:
commit
f8ba9b3c7e
@ -348,7 +348,7 @@ class Env {
|
||||
/// \brief starts a new transaction on the filesystem that handles filename
|
||||
Status StartTransaction(const std::string& filename,
|
||||
TransactionToken** token) {
|
||||
token = nullptr;
|
||||
*token = nullptr;
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
@ -369,7 +369,7 @@ class Env {
|
||||
/// \brief Returns the transaction for `path` or nullptr in `token`
|
||||
Status GetTransactionForPath(const std::string& path,
|
||||
TransactionToken** token) {
|
||||
token = nullptr;
|
||||
*token = nullptr;
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user