Coverity: Missing break: CID 73
authorNelson Ferreira <nelson.ferreira@ieee.org>
Fri, 20 Jan 2012 04:17:16 +0000 (23:17 -0500)
committerNelson Ferreira <nelson.ferreira@ieee.org>
Fri, 20 Jan 2012 04:17:16 +0000 (23:17 -0500)
* src/mule/file-coding.c (eol_type_to_symbol): Add break to
account with fatal crash situation.

Signed-off-by: Nelson Ferreira <nelson.ferreira@ieee.org>
src/mule/file-coding.c

index 214d447..5893ed3 100644 (file)
@@ -463,6 +463,7 @@ static Lisp_Object eol_type_to_symbol(eol_type_t type)
        switch (type) {
        default:
                abort();
+               break;
        case EOL_LF:
                return Qlf;
        case EOL_CRLF: