Problem: Coverity warns for dead code.
Solution: Remove the dead code.
// history length changed
for (type = 0; type < HIST_COUNT; ++type) // adjust the tables
{
- if (newlen)
+ if (newlen > 0)
{
temp = ALLOC_MULT(histentry_T, newlen);
if (temp == NULL) // out of memory!
else
temp = NULL;
- if (newlen != 0 && temp == NULL)
- continue;
-
if (hisidx[type] < 0) // there are no entries yet
{
for (i = 0; i < newlen; ++i)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 878,
/**/
877,
/**/