1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

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 */
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 ir1, ir2, ityp;
int32 sr, st;