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

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

Merge "CTS : hal : Fix the NULL deference pointer issue"

parents ce5cf051 bf1ffcf5
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -884,7 +884,10 @@ void auto_hal_deinit(void)
        return;
        return;
    }
    }


    if(auto_hal != NULL) {
       free(auto_hal);
       free(auto_hal);
       auto_hal = NULL;
    }


    return;
    return;
}
}