Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit beb71cfa authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Uninitialized member fix :(" into rvc-dev am: b9bc1dff am: ae88283a

Change-Id: I529c4c44239bc073044c2d49f0b6c474dfa20ab4
parents 7c543a1a ae88283a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -581,6 +581,7 @@ StorageId IncrementalService::findStorageId(std::string_view path) const {
int IncrementalService::setStorageParams(StorageId storageId, bool enableReadLogs) {
    const auto ifs = getIfs(storageId);
    if (!ifs) {
        LOG(ERROR) << "setStorageParams failed, invalid storageId: " << storageId;
        return -EINVAL;
    }

+2 −2
Original line number Diff line number Diff line
@@ -160,12 +160,12 @@ public:
    class IncrementalServiceConnector : public BnIncrementalServiceConnector {
    public:
        IncrementalServiceConnector(IncrementalService& incrementalService, int32_t storage)
              : incrementalService(incrementalService) {}
              : incrementalService(incrementalService), storage(storage) {}
        binder::Status setStorageParams(bool enableReadLogs, int32_t* _aidl_return) final;

    private:
        IncrementalService& incrementalService;
        int32_t storage;
        int32_t const storage;
    };

private: