From 2ea5084aad6039b499de85de248247bc0c73a84d Mon Sep 17 00:00:00 2001 From: Nicolas 'Pixel' Noble Date: Sun, 20 Jan 2013 21:52:18 -0800 Subject: How could that work in debug mode... ??? --- src/Input.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/Input.cc') diff --git a/src/Input.cc b/src/Input.cc index 5fef78d..ae22109 100644 --- a/src/Input.cc +++ b/src/Input.cc @@ -81,9 +81,12 @@ void Balau::Input::open() throw (GeneralException) { Printer::elog(E_INPUT, "Opening file %s", m_fname.to_charp()); cbResults_t * cbResults; + if (!m_pendingOp) { m_pendingOp = cbResults = new cbResults_t; cbResults->type = cbResults_t::NONE; + } else { + cbResults = (cbResults_t *) m_pendingOp; } try { @@ -159,10 +162,14 @@ class AsyncOpClose : public Balau::AsyncOperation { void Balau::Input::close() throw (GeneralException) { if ((m_fd < 0) && !m_pendingOp) return; + cbResults_t * cbResults; + if (!m_pendingOp) { m_pendingOp = cbResults = new cbResults_t; cbResults->type = cbResults_t::NONE; + } else { + cbResults = (cbResults_t *) m_pendingOp; } try { @@ -226,9 +233,12 @@ ssize_t Balau::Input::read(void * buf, size_t count) throw (GeneralException) { ssize_t result; cbResults_t * cbResults; + if (!m_pendingOp) { m_pendingOp = cbResults = new cbResults_t; cbResults->type = cbResults_t::NONE; + } else { + cbResults = (cbResults_t *) m_pendingOp; } try { -- cgit v1.2.3