Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/slib.c

    r29 r20  
    231231  if (flag == 1)
    232232    {
    233       sl_snprintf    (val, 81, _("\n---------  %10s "), file);
     233      sprintf        (val, _("\n---------  %10s "), file);
    234234      sl_strlcpy     (msg,    val,   80);
    235       sl_snprintf    (val, 81, _(" --- %6d ---------\n"), line);
     235      sprintf        (val, _(" --- %6d ---------\n"), line);
    236236      sl_strlcat     (msg,     val,   80);
    237237      sh_log_console (msg);
     
    577577
    578578#if !defined(HOST_IS_I86SOLARIS)
    579 #if !defined (_GNU_SOURCE) && !defined(__linux__)
    580 /* flawfinder: ignore */
     579#if !defined (_GNU_SOURCE)
    581580extern int vsnprintf ( char *str, size_t n,
    582581                       const char *format, va_list ap );
     
    778777
    779778#if defined(HAVE_VSNPRINTF) && !defined(HAVE_BROKEN_VSNPRINTF)
    780   len = vsnprintf (str, n, format, vl);                /* flawfinder: ignore */
     779  len = vsnprintf (str, n, format, vl);
    781780  str[n-1] = '\0';
    782781#else
    783   VA_COPY (vl2, vl);                     /* save the argument list           */
     782  VA_COPY (vl2, vl);                   /* save the argument list           */
    784783  total = sl_printf_count (format, vl);
    785   len = (int) total;
     784  len   = (int) total;
    786785  if (total < n)
    787786    {
    788       /* flawfinder: ignore */
    789787      vsprintf (str, format, vl2);       /* program has checked that it fits */
    790788      str[n-1] = '\0';
     
    806804 * ENULL:  src || format == NULL
    807805 * ERANGE: n out of range
    808  * ETRUNC: truncated (unimplemented)
     806 * ETRUNC: truncated
    809807 */
    810808int sl_snprintf(char *str, size_t n,
     
    823821  va_start (vl, format);
    824822#if defined(HAVE_VSNPRINTF) && !defined(HAVE_BROKEN_VSNPRINTF)
    825   /* flawfinder: ignore */
    826823  vsnprintf (str, n, format, vl);
    827824  str[n-1] = '\0';
     
    831828  if (total < n)
    832829    {
    833       /* flawfinder: ignore */
    834830      vsprintf (str, format, vl2);     /* program has checked that it fits */
    835831      str[n-1] = '\0';
     
    15721568SL_TICKET sl_make_ticket (int fd, char * filename)
    15731569{
    1574   size_t    len;
    15751570  SL_TICKET ticket;
    15761571  SL_ENTER(_("sl_make_ticket"));
     
    15921587    }
    15931588
    1594   len = sl_strlen(filename)+1;
    1595 
    1596   if ( (ofiles[fd]->path = (char *) malloc(len) ) == NULL)
     1589   if ( (ofiles[fd]->path = (char *) malloc( strlen(filename)+1) ) == NULL)
    15971590    {
    15981591      free(ofiles[fd]);
     
    16121605    }
    16131606
    1614   sl_strlcpy (ofiles[fd]->path, filename, len);
     1607  strcpy (ofiles[fd]->path, filename);                    /* Known to fit  */
    16151608  ofiles[fd]->ticket = ticket;
    16161609  ofiles[fd]->fd     = fd;
     
    16531646  int           fd;
    16541647  int           sflags;
    1655   size_t        len;
    16561648  SL_TICKET     ticket;
    16571649 
     
    18281820    }
    18291821
    1830   len = sl_strlen(filename)+1;
    1831 
    1832   if ( (ofiles[fd]->path = (char *) malloc(len) ) == NULL)
     1822   if ( (ofiles[fd]->path = (char *) malloc( strlen(filename)+1) ) == NULL)
    18331823    {
    18341824      free(ofiles[fd]);
     
    18501840    }
    18511841
    1852   sl_strlcpy (ofiles[fd]->path, filename, len);
     1842  strcpy (ofiles[fd]->path, filename);                    /* Known to fit  */
    18531843  ofiles[fd]->ticket = ticket;
    18541844  ofiles[fd]->fd     = fd;
     
    19841974    {
    19851975      TPT((0, FIL__, __LINE__,
    1986            _("msg=<Error closing file.>, path=<%s>, fd=<%d>, err=<%s>\n"),
    1987            ofiles[fd]->path, fd, strerror(errno)));
     1976           _("msg=<Error closing file.>, path=<%s>, fd=<%d>\n"),
     1977           ofiles[fd]->path, fd));
    19881978    }
    19891979
Note: See TracChangeset for help on using the changeset viewer.