From 11580c343459d6adc7aa8b381c0c1261c1af89c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 23 Apr 2014 18:29:31 +0000 Subject: [PATCH] fixed usage of uninitialized member in i8251_device (nw) --- src/emu/machine/i8251.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/machine/i8251.c b/src/emu/machine/i8251.c index 6c73a9b90ba..021dc313988 100644 --- a/src/emu/machine/i8251.c +++ b/src/emu/machine/i8251.c @@ -40,6 +40,7 @@ i8251_device::i8251_device(const machine_config &mconfig, const char *tag, devic m_syndet_handler(*this), m_cts(1), m_dsr(1), + m_rxc(0), m_txc(0) { }