summaryrefslogtreecommitdiff
path: root/utils/LocIpc.h
diff options
context:
space:
mode:
authorqctecmdr Service <qctecmdr@qualcomm.com>2019-01-17 14:19:17 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2019-01-17 14:19:17 -0800
commit47b591383b447b5c64e9e0ee706f1a4ca69c7d33 (patch)
treed521acf2efcb07c4adea977dc79eb58f19a96755 /utils/LocIpc.h
parent7d9edb3c227a53d146afd00967b9619da33e5fad (diff)
parentcd387d1e8eb7dbf07741005f0cf33677a911dd43 (diff)
downloadgps-47b591383b447b5c64e9e0ee706f1a4ca69c7d33.tar.gz
Merge "LocIpc could be using data member from a deleted obj"
Diffstat (limited to 'utils/LocIpc.h')
-rw-r--r--utils/LocIpc.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/LocIpc.h b/utils/LocIpc.h
index 62309e7..2288a0a 100644
--- a/utils/LocIpc.h
+++ b/utils/LocIpc.h
@@ -44,7 +44,7 @@ class LocIpcSender;
class LocIpc {
friend LocIpcSender;
public:
- inline LocIpc() : mIpcFd(-1), mStopRequested(false), mRunnable(nullptr) {}
+ inline LocIpc() : mIpcFd(-1), mRunnable(nullptr) {}
inline virtual ~LocIpc() { stopListening(); }
// Listen for new messages in current thread. Calling this funciton will
@@ -93,7 +93,6 @@ private:
const uint8_t data[], uint32_t length);
int mIpcFd;
- bool mStopRequested;
LocThread mThread;
LocRunnable *mRunnable;
};