mirror of https://github.com/EasyDarwin/EasyDarwin
fix a crash risk
parent
9810288c51
commit
e60e735532
|
@ -235,17 +235,22 @@ func (client *RTSPClient) requestStream(timeout time.Duration) (err error) {
|
||||||
headers = make(map[string]string)
|
headers = make(map[string]string)
|
||||||
headers["Accept"] = "application/sdp"
|
headers["Accept"] = "application/sdp"
|
||||||
resp, err = client.Request("DESCRIBE", headers)
|
resp, err = client.Request("DESCRIBE", headers)
|
||||||
authorization, _ := client.checkAuth("DESCRIBE", resp)
|
|
||||||
if len(authorization) > 0 {
|
|
||||||
headers := make(map[string]string)
|
|
||||||
headers["Authorization"] = authorization
|
|
||||||
headers["Accept"] = "application/sdp"
|
|
||||||
resp, err = client.Request("DESCRIBE", headers)
|
|
||||||
}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
if resp != nil {
|
||||||
|
authorization, _ := client.checkAuth("DESCRIBE", resp)
|
||||||
|
if len(authorization) > 0 {
|
||||||
|
headers := make(map[string]string)
|
||||||
|
headers["Authorization"] = authorization
|
||||||
|
headers["Accept"] = "application/sdp"
|
||||||
|
resp, err = client.Request("DESCRIBE", headers)
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_sdp, err := sdp.ParseString(resp.Body)
|
_sdp, err := sdp.ParseString(resp.Body)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
Loading…
Reference in New Issue