Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_entropy.c

    r30 r1  
    170170        memset( &addr, 0, sizeof(addr) );
    171171        addr.sun_family = AF_UNIX;
    172         sl_strlcpy( addr.sun_path, name, sizeof(addr.sun_path) );
     172        strcpy( addr.sun_path, name );              /* known to fit  */
    173173        addr_len = offsetof( struct sockaddr_un, sun_path )
    174174                   + strlen( addr.sun_path );
     
    478478static
    479479char   * com_path[] = {
    480   N_("/usr/bin/xpg4/"),
    481480  N_("/usr/ucb/"),
    482481  N_("/bin/"),
     
    571570  char * arg[4];
    572571  char * envp[2];
    573   size_t len;
    574572
    575573  SL_ENTER(_("sh_popen"));
     
    582580  if (sh.timezone != NULL)
    583581    {
    584       len = sl_strlen(sh.timezone) + 4;
    585       envp[0] = malloc (len);     /* free() ok     */
     582      envp[0] = malloc (sl_strlen(sh.timezone) + 4);     /* free() ok     */
    586583      if (envp[0] != NULL)
    587         sl_snprintf (envp[0], len, "TZ=%s", sh.timezone);
     584        sprintf (envp[0], "TZ=%s", sh.timezone);         /* known to fit  */
    588585      else
    589586        envp[0] = NULL;
     
    781778        sl_strlcat(combuf, _(source[i].command), 80);
    782779
    783         /* flawfinder: ignore */
    784780        if ( access (combuf, X_OK) == 0)
    785781          {
Note: See TracChangeset for help on using the changeset viewer.