mirror of
https://github.com/open-simh/simh.git
synced 2026-03-04 18:54:46 +00:00
VAX780: Fix potentially uninitialized variable reference (COVERITY)
This commit is contained in:
@@ -300,7 +300,7 @@ struct {
|
||||
{ 256, "MS780-C M8210 array"},
|
||||
{ 64, "MS780-C M8211 array"},
|
||||
{ 0, NULL}};
|
||||
uint32 i, slot, bd;
|
||||
uint32 i, slot, bd = 0;
|
||||
|
||||
for (i = 0; i < MCTL_NUM; i++) {
|
||||
uint32 baseaddr = ((mcr_b[i] & MCRB_SA) << 1);
|
||||
|
||||
Reference in New Issue
Block a user