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