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

Commit 12482bac authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "audio: free and assign NULL to global static device pointer"

parents 1b64e803 acc64548
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -9210,9 +9210,9 @@ static int adev_dump(const audio_hw_device_t *device __unused,
static int adev_close(hw_device_t *device)
{
    size_t i;
    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);