mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
rtspconnection: Properly exit infinite loop
In the unlikeliness the builder state is invalid, exit the top-level while(TRUE) loop.
This commit is contained in:
parent
d42294114f
commit
962df52fef
1 changed files with 1 additions and 1 deletions
|
@ -2158,7 +2158,7 @@ build_next (GstRTSPBuilder * builder, GstRTSPMessage * message,
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
res = GST_RTSP_ERROR;
|
res = GST_RTSP_ERROR;
|
||||||
break;
|
goto done;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
done:
|
done:
|
||||||
|
|
Loading…
Reference in a new issue