The indentation will be cleaned up in the next commit.
---
libavformat/protocols.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/protocols.c b/libavformat/protocols.c
index 032f07bf72..2aa302d08f 100644
--- a/libavformat/protocols.c
+++ b/libavformat/protocols.c
@@ -95,7 +95,7 @@ const char *avio_enum_protocols(void **const opaque, const
int output)
{
typedef const URLProtocol *const *Iterator;
Iterator p = *opaque ? (Iterator)(*opaque) + 1 : url_protocols;
-iterate:
+ for(;;) {
if (*p) {
if ((output && (*p)->url_write) || (!output && (*p)->url_read)) {
*opaque = (void *)p;
@@ -105,7 +105,7 @@ iterate:
goto done;
}
++p;
- goto iterate;
+ }
done:
*opaque = NULL;
--
2.22.0
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".