[BACK]Return to manpath.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/manpath.c between version 1.14 and 1.15

version 1.14, 2014/04/20 16:46:05 version 1.15, 2014/04/23 21:06:41
Line 169  manpath_add(struct manpaths *dirs, const char *dir)
Line 169  manpath_add(struct manpaths *dirs, const char *dir)
                 if (0 == strcmp(dirs->paths[i], dir))                  if (0 == strcmp(dirs->paths[i], dir))
                         return;                          return;
   
         dirs->paths = mandoc_realloc(dirs->paths,          dirs->paths = mandoc_reallocarray(dirs->paths,
             (dirs->sz + 1) * sizeof(char *));              dirs->sz + 1, sizeof(char *));
   
         dirs->paths[dirs->sz++] = mandoc_strdup(cp);          dirs->paths[dirs->sz++] = mandoc_strdup(cp);
 }  }

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

CVSweb