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

Comparing ray/src/common/calexpr.c (file contents):
Revision 2.9 by greg, Tue Oct 6 12:29:36 1992 UTC vs.
Revision 2.11 by greg, Sun Nov 22 11:53:36 1992 UTC

# Line 149 | Line 149 | register EPNODE         *epar;
149              break;
150  
151          default:
152 <            for (ep = epar->v.kid; ep != NULL; ep = ep->sibling)
152 >            while ((ep = epar->v.kid) != NULL) {
153 >                epar->v.kid = ep->sibling;
154                  epfree(ep);
155 +            }
156              break;
157  
158      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines