From 98b49f3c6917f996851ecdab4d73518290691df1 Mon Sep 17 00:00:00 2001 From: mkr Date: Wed, 6 Jul 2005 13:05:48 +0000 Subject: [PATCH] Fix for bug IPAL9224 : 3.0.0(/dn06/../current1506): CRASH after trying to add output port. --- src/GraphBase/DataFlowBase_DataPort.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GraphBase/DataFlowBase_DataPort.cxx b/src/GraphBase/DataFlowBase_DataPort.cxx index c2f9e8f..4e7c3e1 100644 --- a/src/GraphBase/DataFlowBase_DataPort.cxx +++ b/src/GraphBase/DataFlowBase_DataPort.cxx @@ -66,7 +66,7 @@ void GraphBase::DataPort::InitialValues(CORBA::Any aValue ) { } else if ( !strcmp( Type , "string" ) ) { cdebug << "string" << endl ; - InitialValue <<= (char *) NULL ; + InitialValue <<= (char *) ""; } else if ( !strcmp( Type , "boolean" ) ) { cdebug << "boolean" << endl ; -- 2.39.2