| 79 |
|
|
| 80 |
|
flags &= IO_LEGAL; |
| 81 |
|
for (ms = mlist; ms != NULL; ms = ms->next) |
| 82 |
< |
if (!strcmp(mname, ms->name)) |
| 82 |
> |
if (!strcmp(mname, ms->name)) { |
| 83 |
> |
ms->nref++; /* increase reference count */ |
| 84 |
|
break; |
| 85 |
+ |
} |
| 86 |
|
if (ms == NULL) { /* load first time */ |
| 87 |
|
ms = (MESH *)calloc(1, sizeof(MESH)); |
| 88 |
|
if (ms == NULL) |
| 89 |
|
error(SYSTEM, "out of memory in getmesh"); |
| 90 |
|
ms->name = savestr(mname); |
| 91 |
+ |
ms->nref = 1; |
| 92 |
|
ms->mcube.cutree = EMPTY; |
| 93 |
|
ms->next = mlist; |
| 94 |
|
mlist = ms; |
| 100 |
|
flags &= ~ms->ldflags; |
| 101 |
|
if (flags) |
| 102 |
|
readmesh(ms, pathname, flags); |
| 100 |
– |
ms->nref++; /* increase reference count */ |
| 103 |
|
return(ms); |
| 104 |
|
} |
| 105 |
|
|