From bda9211496e7320bb722defe9cfa001375b971d6 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Thu, 17 Jun 2010 00:38:07 +0000 Subject: [PATCH] Infinite PPC OS X compile fixes (no whatsnew) --- src/emu/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/memory.c b/src/emu/memory.c index 62f19e7e808..a9e7a417f78 100644 --- a/src/emu/memory.c +++ b/src/emu/memory.c @@ -1690,7 +1690,7 @@ static void memory_init_spaces(running_machine *machine) memset(memdata->wptable, STATIC_WATCHPOINT, 1 << LEVEL1_BITS); /* loop over devices */ - device_memory_interface *memory; + device_memory_interface *memory = NULL; for (bool gotone = machine->devicelist.first(memory); gotone; gotone = memory->next(memory)) for (spacenum = 0; spacenum < ADDRESS_SPACES; spacenum++) {