cwIoFlow.cpp : Added an error message when create() fails.

This commit is contained in:
kevin 2024-02-08 10:57:08 -05:00
parent 611c198197
commit 83291dabb3

View File

@ -362,8 +362,10 @@ cw::rc_t cw::io_flow::create( handle_t& hRef,
errLabel: errLabel:
if( rc != kOkRC ) if( rc != kOkRC )
{
rc = cwLogError(rc,"io_flow create failed.");
_destroy(p); _destroy(p);
}
return rc; return rc;