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

Comparing ray/src/common/color.c (file contents):
Revision 2.13 by schorsch, Sun Jul 27 22:12:01 2003 UTC vs.
Revision 2.16 by greg, Wed Feb 9 00:00:17 2005 UTC

# Line 17 | Line 17 | static const char      RCSid[] = "$Id$";
17  
18   #include  "color.h"
19  
20 + #ifdef getc_unlocked            /* avoid horrendous overhead of flockfile */
21 + #undef getc
22 + #undef putc
23 + #define getc    getc_unlocked
24 + #define putc    putc_unlocked
25 + #endif
26 +
27   #define  MINELEN        8       /* minimum scanline length for encoding */
28   #define  MAXELEN        0x7fff  /* maximum scanline length for encoding */
29   #define  MINRUN         4       /* minimum run length */
# Line 167 | Line 174 | register FILE  *fp;
174                      code &= 127;
175                      if ((val = getc(fp)) == EOF)
176                          return -1;
177 +                    if (j + code > len)
178 +                        return -1;      /* overrun */
179                      while (code--)
180                          scanline[j++][i] = val;
181 <                } else                  /* non-run */
181 >                } else {                /* non-run */
182 >                    if (j + code > len)
183 >                        return -1;      /* overrun */
184                      while (code--) {
185                          if ((val = getc(fp)) == EOF)
186                              return -1;
187                          scanline[j++][i] = val;
188                      }
189 +                }
190              }
191          return(0);
192   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines