CHANGED: #1471 got rid of a crash.

This commit is contained in:
dfighter1985 2012-08-19 02:20:57 +02:00
parent 24e1110c62
commit 35b8980800

View file

@ -998,11 +998,14 @@ namespace NLGUI
std::vector<CInterfaceLink::CTargetInfo> targets;
ptr = (char*) xmlGetProp (cur, (xmlChar*)"target");
std::string target = ptr;
if( ( ptr != NULL ) && !editorMode )
std::string target;
if( ptr != NULL )
{
target = std::string( ptr );
if( !editorMode )
CInterfaceLink::splitLinkTargets(std::string((const char*)ptr), parentGroup, targets);
}
// optional action handler
std::string action;
std::string params;