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

Comparing ray/src/common/data.c (file contents):
Revision 2.1 by greg, Fri Aug 2 18:47:25 2024 UTC vs.
Revision 2.2 by greg, Mon Aug 19 18:06:14 2024 UTC

# Line 343 | Line 343 | getspec(               /* load hyperspectral image as data */
343   #endif
344          if ((pp->arr.s = (uby8 *)malloc(i)) == NULL)
345                  goto memerr;
346 <        for (y = 0; y < ns; y++)                /* read each scanline */
346 >        for (y = ns; y-- > 0; )                 /* read each scanline */
347                  if (freadscolrs(pp->arr.s + y*sl*(si.nc+1), si.nc, sl, fp) < 0)
348                          goto readerr;
349          fclose(fp);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines