Changeset e5d7794c1c003f202191579a52ae7109751137d7

Show
Ignore:
Timestamp:
06/04/06 09:36:57 (3 years ago)
Author:
Clément Stenac <zorglub@videolan.org>
git-committer:
Clément Stenac <zorglub@videolan.org> 1144309017 +0000
git-parent:

[335a2445b6c23c2b9ff63944c96c7a714f84e7f1]

git-author:
Clément Stenac <zorglub@videolan.org> 1144309017 +0000
Message:

Fix potential bugs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lxdialog/lxdialog.c

    rc31926a re5d7794  
    209209                            ac == 6 ? av[5] : (char *) NULL); 
    210210    if (ret == 0) 
    211         fprintf(stderr, dialog_input_result); 
     211        fprintf(stderr, "%s", dialog_input_result); 
    212212    return ret; 
    213213} 
  • modules/access/dvb/linux_dvb.c

    rfcd621c re5d7794  
    16511651#define CHECK_TYPE( x, s )                                                  \ 
    16521652        if ( sinfo.type & (CA_##x) )                                        \ 
    1653             p += sprintf( p, s ); 
     1653            p += sprintf( p, "%s", s ); 
    16541654 
    16551655        CHECK_TYPE( CI, "high level, " ); 
  • modules/access/rtsp/real.c

    r2cb472d re5d7794  
    674674    goto error; 
    675675  description[size]=0; 
    676   fprintf(stderr,description); 
     676  fprintf(stderr, "%s", description); 
    677677 
    678678  /* parse sdp (sdpplin) and create a header and a subscribe string */