cwFlow.cpp : Fixed possible uninitialized pointer in create().

This commit is contained in:
kevin 2023-02-20 15:26:07 -05:00
parent 47aeaabbfb
commit 2fc2f7f4b0

View File

@ -978,7 +978,7 @@ cw::rc_t cw::flow::create( handle_t& hRef,
unsigned deviceN )
{
rc_t rc = kOkRC;
const object_t* network;
const object_t* network = nullptr;
bool printClassDictFl = false;
bool printNetworkFl = false;