summaryrefslogtreecommitdiffstats
path: root/src/lib/netlist/plib/palloc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/plib/palloc.cpp')
-rw-r--r--src/lib/netlist/plib/palloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/plib/palloc.cpp b/src/lib/netlist/plib/palloc.cpp
index 22dbc1d4e93..b6d188d159e 100644
--- a/src/lib/netlist/plib/palloc.cpp
+++ b/src/lib/netlist/plib/palloc.cpp
@@ -40,7 +40,7 @@ void* operator new(std::size_t size, pmemory_pool *pool) throw (std::bad_alloc)
void operator delete(void *ptr, pmemory_pool *pool)
{
- if (ptr != NULL)
+ if (ptr != nullptr)
pfree_raw(ptr);
}
r/e2f0f360b06d021ae2f94d315bcf7538?s=128&d=retro' /> Olivier Galibert2022-04-271-1/+1 * srcclean in preparation for 0.243 Vas Crabb2022-04-241-1/+1 * apple2gs: Don't trigger on $C071-$C07F. Fixes Rastan and other joystick issu... arbee2022-04-131-4/+6 * apple2gs: fix slow cycles to a more correct value. (MT#08240) [R. Belmont] arbee2022-04-121-1/+3 * init vars for broken apples Robbbert2022-04-101-69/+69 * bus/a2bus: Added Apple II 3.5" Disk Controller Card. (#9215) ksherlock2022-02-091-0/+5 * Future-proofing by using correct #include for SOFTWARE_LIST device AJR2022-01-031-1/+1 * srcclean, remove a vestigial thing, and a little cleanup Vas Crabb2021-12-261-1/+1 * apple2gs: fix $C034 readback and some uninitialized variables. [R. Belmont] arbee2021-12-201-2/+5 * a2bus: consolidate card lists to clean up the drivers. [R. Belmont] arbee2021-12-161-124/+8 * apple2gs: convert most bankdev banking to memory views. [R. Belmont] arbee2021-12-061-266/+153 * Remove a few outdated references to MESS Dirk Best2021-12-021-1/+1 * Apple softlist update for November 2021 (#8850) Firehawke2021-11-211-5/+6 * apple2gs: fix regression pointed out by Coverity. [R. Belmont] arbee2021-11-171-1/+1 * apple2gs: fix GCC compile. [R. Belmont] arbee2021-11-151-2/+4 * apple2gs.cpp: Checkpoint along the way to bit-serial ADB emulation. [R. Belmont] arbee2021-11-151-211/+180 * apple2gs: ROM 0/1 have the $C028 ROMSWITCH, support it. [R. Belmont]