[easytag] Add missing break in switch



commit 7c04a8693a4a05aa5a4d19e9ea65ffc3502e7a67
Author: David King <amigadave amigadave com>
Date:   Thu Jan 22 16:31:55 2015 +0000

    Add missing break in switch
    
    Avoid an assert when opening Opus files.
    
    Found with Coverity (CID 1265644).

 src/tags/vcedit.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/src/tags/vcedit.c b/src/tags/vcedit.c
index 07d8859..70d66ed 100644
--- a/src/tags/vcedit.c
+++ b/src/tags/vcedit.c
@@ -621,6 +621,7 @@ vcedit_open (EtOggState *state,
                                     goto err;
                                     break;
                             }
+                            break;
 #endif
                         default:
                             g_assert_not_reached ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]