Changes in trunk/src/slib.c [29:20]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/slib.c
r29 r20 231 231 if (flag == 1) 232 232 { 233 s l_snprintf (val, 81, _("\n--------- %10s "), file);233 sprintf (val, _("\n--------- %10s "), file); 234 234 sl_strlcpy (msg, val, 80); 235 s l_snprintf (val, 81, _(" --- %6d ---------\n"), line);235 sprintf (val, _(" --- %6d ---------\n"), line); 236 236 sl_strlcat (msg, val, 80); 237 237 sh_log_console (msg); … … 577 577 578 578 #if !defined(HOST_IS_I86SOLARIS) 579 #if !defined (_GNU_SOURCE) && !defined(__linux__) 580 /* flawfinder: ignore */ 579 #if !defined (_GNU_SOURCE) 581 580 extern int vsnprintf ( char *str, size_t n, 582 581 const char *format, va_list ap ); … … 778 777 779 778 #if defined(HAVE_VSNPRINTF) && !defined(HAVE_BROKEN_VSNPRINTF) 780 len = vsnprintf (str, n, format, vl); /* flawfinder: ignore */779 len = vsnprintf (str, n, format, vl); 781 780 str[n-1] = '\0'; 782 781 #else 783 VA_COPY (vl2, vl); 782 VA_COPY (vl2, vl); /* save the argument list */ 784 783 total = sl_printf_count (format, vl); 785 len = (int) total;784 len = (int) total; 786 785 if (total < n) 787 786 { 788 /* flawfinder: ignore */789 787 vsprintf (str, format, vl2); /* program has checked that it fits */ 790 788 str[n-1] = '\0'; … … 806 804 * ENULL: src || format == NULL 807 805 * ERANGE: n out of range 808 * ETRUNC: truncated (unimplemented)806 * ETRUNC: truncated 809 807 */ 810 808 int sl_snprintf(char *str, size_t n, … … 823 821 va_start (vl, format); 824 822 #if defined(HAVE_VSNPRINTF) && !defined(HAVE_BROKEN_VSNPRINTF) 825 /* flawfinder: ignore */826 823 vsnprintf (str, n, format, vl); 827 824 str[n-1] = '\0'; … … 831 828 if (total < n) 832 829 { 833 /* flawfinder: ignore */834 830 vsprintf (str, format, vl2); /* program has checked that it fits */ 835 831 str[n-1] = '\0'; … … 1572 1568 SL_TICKET sl_make_ticket (int fd, char * filename) 1573 1569 { 1574 size_t len;1575 1570 SL_TICKET ticket; 1576 1571 SL_ENTER(_("sl_make_ticket")); … … 1592 1587 } 1593 1588 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) 1597 1590 { 1598 1591 free(ofiles[fd]); … … 1612 1605 } 1613 1606 1614 s l_strlcpy (ofiles[fd]->path, filename, len);1607 strcpy (ofiles[fd]->path, filename); /* Known to fit */ 1615 1608 ofiles[fd]->ticket = ticket; 1616 1609 ofiles[fd]->fd = fd; … … 1653 1646 int fd; 1654 1647 int sflags; 1655 size_t len;1656 1648 SL_TICKET ticket; 1657 1649 … … 1828 1820 } 1829 1821 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) 1833 1823 { 1834 1824 free(ofiles[fd]); … … 1850 1840 } 1851 1841 1852 s l_strlcpy (ofiles[fd]->path, filename, len);1842 strcpy (ofiles[fd]->path, filename); /* Known to fit */ 1853 1843 ofiles[fd]->ticket = ticket; 1854 1844 ofiles[fd]->fd = fd; … … 1984 1974 { 1985 1975 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)); 1988 1978 } 1989 1979
Note:
See TracChangeset
for help on using the changeset viewer.