diff options
| author | Preetam Singh Ranawat <apranawat@codeaurora.org> | 2019-06-24 15:11:28 +0530 |
|---|---|---|
| committer | Kevin F. Haggerty <haggertk@lineageos.org> | 2020-01-25 09:29:36 -0700 |
| commit | 9861377105267962c5c0ee53f4e551873066c647 (patch) | |
| tree | bb19239979d960f6d1c149fc2e0b1ea5eb451d89 | |
| parent | 7f55a65653f924b7a793dbde301bb4215f1d0a96 (diff) | |
| download | android_hardware_qcom_audio-cm-14.1-caf-8994.tar.gz android_hardware_qcom_audio-cm-14.1-caf-8994.tar.bz2 android_hardware_qcom_audio-cm-14.1-caf-8994.zip | |
audio: free and assign NULL to global static device pointercm-14.1-caf-8994
-free and assign NULL to global static device pointer instead of local
pointer to avoid free after use issue.
Change-Id: Idfdef719320efcd792c7d2ebd7ec2dfe5d3fbfbd
| -rw-r--r-- | hal/audio_hw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hal/audio_hw.c b/hal/audio_hw.c index 4ff624cc..cb2ca582 100644 --- a/hal/audio_hw.c +++ b/hal/audio_hw.c @@ -3915,9 +3915,9 @@ static int adev_dump(const audio_hw_device_t *device __unused, static int adev_close(hw_device_t *device) { - struct audio_device *adev = (struct audio_device *)device; + struct audio_device *adev_temp = (struct audio_device *)device; - if (!adev) + if (!adev_temp) return 0; pthread_mutex_lock(&adev_init_lock); |
