Index: accel_net.c =================================================================== --- accel_net.c (revision 32331) +++ accel_net.c (revision 32332) @@ -110,7 +110,7 @@ netlist = netlist->children->next; /* first item was the netlist name */ for(n = netlist; n != NULL; n = n->next) { if (strcmp(n->str, "compInst") == 0) { - char *refdes = n->children->str, *footprint = NULL, *value = NULL; + char *refdes = n->children->str, *footprint = NULL, *value = ""; for(m = n->children; m != NULL; m = m->next) { if (strcmp(m->str, "originalName") == 0) footprint = m->children->str; if (strcmp(m->str, "compValue") == 0) value = m->children->str;