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

Comparing ray/src/common/font.c (file contents):
Revision 2.13 by greg, Tue Feb 25 02:47:21 2003 UTC vs.
Revision 2.16 by schorsch, Sun Jul 27 22:12:01 2003 UTC

# Line 37 | Line 37 | char  *fname;
37                          return(f);
38                  }
39                                                  /* load the font file */
40 <        if ((pathname = getpath(fname, getlibpath(), R_OK)) == NULL) {
40 >        if ((pathname = getpath(fname, getrlibpath(), R_OK)) == NULL) {
41                  sprintf(errmsg, "cannot find font file \"%s\"", fname);
42                  error(USER, errmsg);
43          }
# Line 117 | Line 117 | fonterr:
117          error(USER, errmsg);
118   memerr:
119          error(SYSTEM, "out of memory in fontglyph");
120 +        return NULL; /* pro forma return */
121   }
122  
123  
# Line 128 | Line 129 | FONT *fnt;
129          register FONT  *fl, *f;
130          register int  i;
131                                          /* check reference count */
132 <        if (fnt != NULL && (fnt->nref-- > 1 | retainfonts))
132 >        if (fnt != NULL && ((fnt->nref-- > 1) | retainfonts))
133                  return;
134          head.next = fontlist;
135          fl = &head;
136          while ((f = fl->next) != NULL)
137 <                if ((fnt == NULL | fnt == f)) {
137 >                if ((fnt == NULL) | (fnt == f)) {
138                          fl->next = f->next;
139                          for (i = 0; i < 256; i++)
140                                  if (f->fg[i] != NULL)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines