ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/readoct.c
(Generate patch)

Comparing ray/src/common/readoct.c (file contents):
Revision 1.13 by greg, Mon Aug 5 08:58:52 1991 UTC vs.
Revision 1.14 by greg, Wed Oct 23 11:53:38 1991 UTC

# Line 26 | Line 26 | static OCTREE  getfullnode(), gettree();
26  
27   static char  *infn;                     /* input file name */
28   static FILE  *infp;                     /* input file stream */
29 + static int  objsize;                    /* size of stored OBJECT's */
30   static OBJECT  objorig;                 /* zeroeth object */
31   static short  otypmap[NUMOTYPE+8];      /* object type map */
32  
# Line 58 | Line 59 | char  *ofn[];
59          if (checkheader(infp, OCTFMT, load&IO_INFO ? stdout : NULL) < 0)
60                  octerror(USER, "not an octree");
61                                          /* check format */
62 <        if (getint(2) != OCTMAGIC)
62 >        if ((objsize = getint(2)-OCTMAGIC) <= 0 ||
63 >                        objsize > MAXOBJSIZ || objsize > sizeof(long))
64                  octerror(USER, "incompatible octree format");
65                                          /* get boundaries */
66          if (load & IO_BOUNDS) {
# Line 81 | Line 83 | char  *ofn[];
83          if (load & IO_FILES)
84                  ofn[nf] = NULL;
85                                          /* get number of objects */
86 <        fnobjects = getint(sizeof(OBJECT));
86 >        fnobjects = getint(objsize);
87  
88          if (load & IO_TREE) {
89                                                  /* get the octree */
# Line 131 | Line 133 | getfullnode()                  /* get a set, return fullnode */
133   {
134          OBJECT  set[MAXSET+1];
135          register int  i;
136 +        register long  m;
137  
138 <        set[0] = getint(sizeof(OBJECT));
139 <        if (set[0] > MAXSET)
138 >        m = getint(objsize);
139 >        if (m > MAXSET)
140                  octerror(USER, "bad set in getfullnode");
141 <        for (i = 1; i <= set[0]; i++)
142 <                set[i] = getint(sizeof(OBJECT)) + objorig;
141 >        set[0] = m;
142 >        for (i = 1; i <= set[0]; i++) {
143 >                m = getint(objsize) + objorig;
144 >                if ((OBJECT)m != m)
145 >                        octerror(USER, "too many objects");
146 >                set[i] = m;
147 >        }
148          return(fullnode(set));
149   }      
150  
# Line 205 | Line 213 | getobj()                               /* get next object */
213          char  sbuf[MAXSTR];
214          int  obj;
215          register int  i;
216 +        register long  m;
217          register OBJREC  *objp;
218  
219          i = getint(1);
# Line 215 | Line 224 | getobj()                               /* get next object */
224          objp = objptr(obj);
225          if ((objp->otype = otypmap[i]) < 0)
226                  octerror(USER, "reference to unknown type");
227 <        if ((objp->omod = getint(sizeof(OBJECT))) != OVOID)
228 <                objp->omod += objorig;
227 >        if ((m = getint(objsize)) != OVOID) {
228 >                m += objorig;
229 >                if ((OBJECT)m != m)
230 >                        octerror(USER, "too many objects");
231 >        }
232 >        objp->omod = m;
233          objp->oname = savqstr(getstr(sbuf));
234          if (objp->oargs.nsargs = getint(2)) {
235                  objp->oargs.sarg = (char **)bmalloc

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines