ID32: Fix potential uninitialized variable recording history (COVERITY)
This commit is contained in:
parent
2ddb7162f3
commit
1c83826b43
1 changed files with 1 additions and 1 deletions
|
@ -652,7 +652,7 @@ if (abortval != 0) { /* mem mgt abort? */
|
||||||
while (reason == 0) { /* loop until halted */
|
while (reason == 0) { /* loop until halted */
|
||||||
|
|
||||||
uint32 dev, drom, opnd, inc, lim, bufa;
|
uint32 dev, drom, opnd, inc, lim, bufa;
|
||||||
uint32 op, r1, r1p1, r2, rx2, ea;
|
uint32 op, r1, r1p1, r2, rx2, ea = 0;
|
||||||
uint32 mpy, mpc, dvr;
|
uint32 mpy, mpc, dvr;
|
||||||
uint32 i, rslt, rlo, t;
|
uint32 i, rslt, rlo, t;
|
||||||
uint32 ir1, ir2, ir3, ityp;
|
uint32 ir1, ir2, ir3, ityp;
|
||||||
|
|
Loading…
Add table
Reference in a new issue