Fix several instances of uninitialized variables.

This commit is contained in:
Jasmine Iwanek
2023-07-21 13:46:08 -04:00
parent 223ec09168
commit 54c52fb55c
10 changed files with 36 additions and 26 deletions

View File

@@ -223,10 +223,11 @@ extern void x386_dynarec_log(const char *fmt, ...);
static int
opVPCEXT(uint32_t fetchdat)
{
uint8_t b1, b2;
uint8_t b1;
uint8_t b2;
uint16_t cent;
time_t now;
struct tm *tm;
struct tm *tm = NULL;
if (!is_vpc) /* only emulate this on Virtual PC machines */
return ILLEGAL(fetchdat);