mirror of
https://github.com/open-simh/simh.git
synced 2026-01-13 15:27:46 +00:00
VAX780: Fix potentially uninitialized variable reference (COVERITY)
This commit is contained in:
parent
2d5711961f
commit
44deef9447
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user