1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

TAPE: Avoid potential uninitialized variable reference

This commit is contained in:
Mark Pizzolato
2020-08-16 06:41:33 -07:00
parent dca1c45e80
commit d92aaef9b0

View File

@@ -3830,7 +3830,7 @@ t_awslnt awsrec_typ = AWS_REC;
char name[256];
t_stat stat = SCPE_OPENERR;
uint8 *buf = NULL;
t_stat aws_stat;
t_stat aws_stat = MTSE_UNATT;
int32 saved_switches = sim_switches;
srand (0); /* All devices use the same random sequence for file data */