src/gf_w128.c: remove dead code and unused variable

Fix for Coverity issue:

CID 1297812 (#1 of 1): Constant variable guards dead code (DEADCODE)
 dead_error_begin: Execution cannot reach this statement: fprintf(stderr,
  "Code conta....
 Local variable no_default_flag is assigned only once, to a constant
  value, making it effectively constant throughout its scope. If this
  is not the intent, examine the logic to see if there is a missing
  assignment that would make no_default_flag not remain constant.

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
master
Danny Al-Gaaf 2015-06-17 10:46:44 +02:00
parent da671b4908
commit 7972291e1f
1 changed files with 0 additions and 5 deletions

View File

@ -1724,7 +1724,6 @@ int gf_w128_scratch_size(int mult_type, int region_type, int divide_type, int ar
int gf_w128_init(gf_t *gf)
{
gf_internal_t *h;
int no_default_flag = 0;
h = (gf_internal_t *) gf->scratch;
@ -1737,10 +1736,6 @@ int gf_w128_init(gf_t *gf)
} else {
h->prim_poly = 0x87; /* Omitting the leftmost 1 as in w=32 */
}
if (no_default_flag == 1) {
fprintf(stderr,"Code contains no default irreducible polynomial for given base field\n");
return 0;
}
}
gf->multiply.w128 = NULL;