ID16: Fix potential uninitialized variable recording history (COVERITY)

This commit is contained in:
Mark Pizzolato 2017-04-11 11:03:41 -07:00
parent 6ff3eeac80
commit faae90e160

View file

@ -594,7 +594,7 @@ reason = 0;
while (reason == 0) { /* loop until halted */ while (reason == 0) { /* loop until halted */
uint32 dev, drom, inc, lim, opnd; uint32 dev, drom, inc, lim, opnd;
uint32 op, r1, r1p1, r2, ea, oPC; uint32 op, r1, r1p1, r2, ea = 0, oPC;
uint32 rslt, t, map; uint32 rslt, t, map;
uint32 ir1, ir2, ityp; uint32 ir1, ir2, ityp;
int32 sr, st; int32 sr, st;