diff options
author | Eric Laurent <elaurent@google.com> | 2016-09-07 16:58:39 -0700 |
---|---|---|
committer | gitbuildkicker <android-build@google.com> | 2016-09-27 15:56:39 -0700 |
commit | 128035617a8cafd4ea717ceb8d6fe56564b07262 (patch) | |
tree | 0aa249d9b19353076b2b85e7fa24eb8b3cc29dd9 /include | |
parent | d8cf9aa813be5363fb5425b4f818a267edd5e750 (diff) | |
download | frameworks_av-128035617a8cafd4ea717ceb8d6fe56564b07262.zip frameworks_av-128035617a8cafd4ea717ceb8d6fe56564b07262.tar.gz frameworks_av-128035617a8cafd4ea717ceb8d6fe56564b07262.tar.bz2 |
Radio: get service by value.
Get strong pointer to service interface by value and not reference to
prevent race conditions where the service pointer can be cleared
by another thread while in use.
Bug: 30907212
Change-Id: Iae838b3b672562c1d0cd63968399a6bfdda7f5ab
(cherry picked from commit 28a0e9ec74e5192aacffb279c80619ef284062b0)
Diffstat (limited to 'include')
-rw-r--r-- | include/radio/Radio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/radio/Radio.h b/include/radio/Radio.h index 302bf16..a4dfdd1 100644 --- a/include/radio/Radio.h +++ b/include/radio/Radio.h @@ -75,7 +75,7 @@ public: private: Radio(radio_handle_t handle, const sp<RadioCallback>&); - static const sp<IRadioService>& getRadioService(); + static const sp<IRadioService> getRadioService(); Mutex mLock; sp<IRadio> mIRadio; |