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

Commit 27440849 authored by Josh Gao's avatar Josh Gao
Browse files

adb: fix uninitialized variable in AsyncServiceRef.

Bug: none
Test: treehugger
Change-Id: I8ba0a70a772f88bfd701730a48d4eb32c6677b9e
parent 48cf760b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ class AsyncServiceRef {
    }

  private:
    bool initialized_;
    bool initialized_ = false;
    fdevent fde_;
};