From: mkr Date: Thu, 7 Jul 2005 10:30:39 +0000 (+0000) Subject: Fix for bug IPAL9443 : 3.0.0(current0707): CRASH after trying to run dataflow. X-Git-Tag: current25072005~11 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=bce89e97e15a0d16dee354abbeb53e8782bab5e8;p=modules%2Fsuperv.git Fix for bug IPAL9443 : 3.0.0(current0707): CRASH after trying to run dataflow. --- diff --git a/src/GraphExecutor/DataFlowExecutor_InNodeThreads.cxx b/src/GraphExecutor/DataFlowExecutor_InNodeThreads.cxx index 5a28405..f87d988 100644 --- a/src/GraphExecutor/DataFlowExecutor_InNodeThreads.cxx +++ b/src/GraphExecutor/DataFlowExecutor_InNodeThreads.cxx @@ -3256,7 +3256,8 @@ void GraphExecutor::InNode::InOutParametersSet( int nOutParams , << Type << endl ; #endif if ( !strcmp( Type , "string" ) ) { - D.Value <<= (char *) NULL ; + char* ch = ""; + D.Value <<= (char *) ch; } else if ( !strcmp( Type , "boolean" ) ) { bool b = 0 ;