TAPE: Avoid potential uninitialized variable reference
This commit is contained in:
parent
dca1c45e80
commit
d92aaef9b0
1 changed files with 1 additions and 1 deletions
|
@ -3830,7 +3830,7 @@ t_awslnt awsrec_typ = AWS_REC;
|
||||||
char name[256];
|
char name[256];
|
||||||
t_stat stat = SCPE_OPENERR;
|
t_stat stat = SCPE_OPENERR;
|
||||||
uint8 *buf = NULL;
|
uint8 *buf = NULL;
|
||||||
t_stat aws_stat;
|
t_stat aws_stat = MTSE_UNATT;
|
||||||
int32 saved_switches = sim_switches;
|
int32 saved_switches = sim_switches;
|
||||||
|
|
||||||
srand (0); /* All devices use the same random sequence for file data */
|
srand (0); /* All devices use the same random sequence for file data */
|
||||||
|
|
Loading…
Add table
Reference in a new issue