[BACK]Return to kdump.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / kdump

Diff for /src/usr.bin/kdump/kdump.c between version 1.89 and 1.90

version 1.89, 2014/09/17 19:12:55 version 1.90, 2014/10/08 04:02:46
Line 311 
Line 311 
                         return;                          return;
                 }                  }
         }          }
         tmp = realloc(pe_table, (pe_size + 1) * sizeof(*pe_table));          tmp = reallocarray(pe_table, pe_size + 1, sizeof(*pe_table));
         if (tmp == NULL)          if (tmp == NULL)
                 err(1, NULL);                  err(1, NULL);
         pe_table = tmp;          pe_table = tmp;

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90