Roman I Khimov:
authorChristos Zoulas <christos@zoulas.com>
Tue, 13 May 2014 16:42:17 +0000 (16:42 +0000)
committerChristos Zoulas <christos@zoulas.com>
Tue, 13 May 2014 16:42:17 +0000 (16:42 +0000)
Remove useless assignments found by clang static analysis.

src/apprentice.c
src/softmagic.c

index 5440f8cc8b8fcf632b64bea3ec39ca32a0cd67d5..3069f546f9d792abfb246a9c44b5baeac7083ad7 100644 (file)
@@ -32,7 +32,7 @@
 #include "file.h"
 
 #ifndef        lint
-FILE_RCSID("@(#)$File: apprentice.c,v 1.207 2014/05/04 18:57:35 christos Exp $")
+FILE_RCSID("@(#)$File: apprentice.c,v 1.208 2014/05/06 16:07:23 christos Exp $")
 #endif /* lint */
 
 #include "magic.h"
@@ -783,7 +783,6 @@ apprentice_magic_strength(const struct magic *m)
                break;
 
        default:
-               val = 0;
                (void)fprintf(stderr, "Bad type %d\n", m->type);
                abort();
        }
index 3153d437cab50e124e7d96e8c5d68b35e98e4abb..2eee43c1626e56a9b0f91d01e12766c7cb20eb32 100644 (file)
@@ -32,7 +32,7 @@
 #include "file.h"
 
 #ifndef        lint
-FILE_RCSID("@(#)$File: softmagic.c,v 1.185 2014/04/30 21:41:02 christos Exp $")
+FILE_RCSID("@(#)$File: softmagic.c,v 1.186 2014/05/05 20:53:10 christos Exp $")
 #endif /* lint */
 
 #include "magic.h"
@@ -1835,7 +1835,6 @@ magiccheck(struct magic_set *ms, struct magic *m)
                        break;
 
                default:
-                       matched = 0;
                        file_magerror(ms, "cannot happen with float: invalid relation `%c'",
                            m->reln);
                        return -1;
@@ -1869,7 +1868,6 @@ magiccheck(struct magic_set *ms, struct magic *m)
                        break;
 
                default:
-                       matched = 0;
                        file_magerror(ms, "cannot happen with double: invalid relation `%c'", m->reln);
                        return -1;
                }
@@ -2062,7 +2060,6 @@ magiccheck(struct magic_set *ms, struct magic *m)
                break;
 
        default:
-               matched = 0;
                file_magerror(ms, "cannot happen: invalid relation `%c'",
                    m->reln);
                return -1;