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

Commit c92ed333 authored by Andreas Huber's avatar Andreas Huber Committed by Android (Google) Code Review
Browse files

Merge "Fix uninitialized variable error in HLS bandwidth determination."

parents 8a8bc683 67315858
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -651,7 +651,7 @@ size_t LiveSession::getBandwidthIndex() {

#if 1
    char value[PROPERTY_VALUE_MAX];
    ssize_t index;
    ssize_t index = -1;
    if (property_get("media.httplive.bw-index", value, NULL)) {
        char *end;
        index = strtol(value, &end, 10);