[vlc-commits] vod: fix fall through annotations

Rémi Denis-Courmont git at videolan.org
Thu Jun 29 22:34:52 CEST 2017


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Jun 29 22:32:22 2017 +0300| [d702ae451663660b5a99cd596999e4f85eeb5d2f] | committer: Rémi Denis-Courmont

vod: fix fall through annotations

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d702ae451663660b5a99cd596999e4f85eeb5d2f
---

 modules/misc/rtsp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/misc/rtsp.c b/modules/misc/rtsp.c
index d2a03c1911..74091f0718 100644
--- a/modules/misc/rtsp.c
+++ b/modules/misc/rtsp.c
@@ -1063,7 +1063,7 @@ static int RtspCallback( httpd_callback_sys_t *p_args, httpd_client_t *cl,
             /* Intentional fall-through on x-playNow option in RTSP request */
             if( !psz_playnow )
                 break;
-        }
+        }   /* fall through */
 
         case HTTPD_MSG_PLAY:
         {
@@ -1401,6 +1401,7 @@ static int RtspCallbackES( httpd_callback_sys_t *p_args, httpd_client_t *cl,
             /* Intentional fall-through on x-playNow option in RTSP request */
             if( !psz_playnow )
                 break;
+            /* fall through */
 
         case HTTPD_MSG_PLAY:
             /* This is kind of a kludge. Should we only support Aggregate



More information about the vlc-commits mailing list