| # | Line 143 | Line 143 | FILE *fp; | |
|---|---|---|
| 143 | return(-1); | |
| 144 | #ifdef IARGS | |
| 145 | if (fa->niargs = n) { | |
| 146 | < | fa->iarg = (long *)bmalloc(n*sizeof(int)); |
| 146 | > | fa->iarg = (long *)bmalloc(n*sizeof(long)); |
| 147 | if (fa->iarg == NULL) | |
| 148 | goto memerr; | |
| 149 | for (i = 0; i < n; i++) | |
| # | Line 182 | Line 182 | newobject() /* get a new object */ | |
| 182 | i = nobjects >> 6; | |
| 183 | if (i >= MAXOBJBLK) | |
| 184 | return(OVOID); | |
| 185 | < | objblock[i] = (OBJREC *)malloc(0100*sizeof(OBJREC)); |
| 185 | > | objblock[i] = (OBJREC *)bmalloc(0100*sizeof(OBJREC)); |
| 186 | if (objblock[i] == NULL) | |
| 187 | return(OVOID); | |
| 188 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |