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

Commit 25d634e5 authored by Kim Schulz's avatar Kim Schulz Committed by Andre Eisenbach
Browse files

fixed missing {} around if scope

a range of lines was supposed to be part of an if-true scope, but was not (due to missing {})

Bug: 10905622
Change-Id: I7adad37216cc78403f2d187d3404565f527d67c1
parent 36804134
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2173,6 +2173,7 @@ void bta_av_reconfig (tBTA_AV_SCB *p_scb, tBTA_AV_DATA *p_data)
        /* close the stream */
        APPL_TRACE_DEBUG("close/open num_protect: %d", p_cfg->num_protect);
        if(p_scb->started)
        {
            bta_av_str_stopped(p_scb, NULL);
            p_scb->started = FALSE;

@@ -2180,7 +2181,7 @@ void bta_av_reconfig (tBTA_AV_SCB *p_scb, tBTA_AV_DATA *p_data)
            L2CA_FlushChannel (p_scb->l2c_cid, L2CAP_FLUSH_CHANS_ALL);

            AVDT_CloseReq(p_scb->avdt_handle);

        }
    }
}