[vlc-commits] preparser: explicit fallthrough
    Steve Lhomme 
    git at videolan.org
       
    Mon May  7 08:49:05 CEST 2018
    
    
  
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Sun May  6 18:57:40 2018 +0200| [2057eca9a62f8125952192c10de896336c56cc84] | committer: Steve Lhomme
preparser: explicit fallthrough
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2057eca9a62f8125952192c10de896336c56cc84
---
 src/playlist/preparser.c | 1 +
 1 file changed, 1 insertion(+)
diff --git a/src/playlist/preparser.c b/src/playlist/preparser.c
index 1122dd7cef..02a5a37f21 100644
--- a/src/playlist/preparser.c
+++ b/src/playlist/preparser.c
@@ -170,6 +170,7 @@ void playlist_preparser_Push( playlist_preparser_t *preparser,
         case ITEM_TYPE_PLAYLIST:
             if( !b_net || i_options & META_REQUEST_OPTION_SCOPE_NETWORK )
                 break;
+            /* fallthrough */
         default:
             input_item_SignalPreparseEnded( item, ITEM_PREPARSE_SKIPPED );
             return;
    
    
More information about the vlc-commits
mailing list