summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPreetam Singh Ranawat <apranawat@codeaurora.org>2019-06-24 15:11:28 +0530
committerKevin F. Haggerty <haggertk@lineageos.org>2020-01-13 08:19:04 -0700
commit4e49287efe116173c05541130290b938a16ea190 (patch)
tree47201ff11dfd979248c3d87be5070dcc2e5fe718
parentdf3df8513c8aad436724b0dcdb9ca0544ed482e0 (diff)
downloadandroid_hardware_qcom_audio-lineage-15.1-caf-8996.tar.gz
android_hardware_qcom_audio-lineage-15.1-caf-8996.tar.bz2
android_hardware_qcom_audio-lineage-15.1-caf-8996.zip
audio: free and assign NULL to global static device pointerlineage-15.1-caf-8996
-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hal/audio_hw.c b/hal/audio_hw.c
index 4b196464..ad7e9c89 100644
--- a/hal/audio_hw.c
+++ b/hal/audio_hw.c
@@ -6601,9 +6601,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);