summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--runtime/netstrm.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/netstrm.c b/runtime/netstrm.c
index 49ba8f35..841a069c 100644
--- a/runtime/netstrm.c
+++ b/runtime/netstrm.c
@@ -253,8 +253,11 @@ EnableKeepAlive(netstrm_t *pThis)
static rsRetVal
CheckConnection(netstrm_t *pThis)
{
+ DEFiRet;
ISOBJ_TYPE_assert(pThis, netstrm);
- pThis->Drvr.CheckConnection(pThis->pDrvrData);
+ CHKiRet(pThis->Drvr.CheckConnection(pThis->pDrvrData));
+finalize_it:
+ RETiRet;
}