Initialize node and link comments in add functions

This commit is contained in:
Elad Salomons
2018-09-04 21:15:57 +03:00
parent fcbb47251e
commit 0f296db492

View File

@@ -4893,6 +4893,7 @@ int DLLEXPORT EN_addnode(EN_ProjectHandle ph, char *id, EN_NodeType nodeType) {
node->C0 = 0; node->C0 = 0;
node->Ke = 0; node->Ke = 0;
node->Rpt = 0; node->Rpt = 0;
strcpy(node->Comment, "");
coord->HaveCoords = FALSE; coord->HaveCoords = FALSE;
coord->X = 0; coord->X = 0;
@@ -5003,6 +5004,7 @@ int DLLEXPORT EN_addlink(EN_ProjectHandle ph, char *id, EN_LinkType linkType, ch
link->R = 0; link->R = 0;
link->Rc = 0; link->Rc = 0;
link->Rpt = 0; link->Rpt = 0;
strcpy(link->Comment, "");
ENHashTableInsert(net->LinkHashTable, link->ID, n); ENHashTableInsert(net->LinkHashTable, link->ID, n);
return set_error(p->error_handle, 0); return set_error(p->error_handle, 0);