~ubuntu-branches/ubuntu/utopic/vlc/utopic

« back to all changes in this revision

Viewing changes to modules/access/vcd/cdrom.c

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2012-07-21 17:52:21 UTC
  • mfrom: (1.1.48) (3.5.44 sid)
  • Revision ID: package-import@ubuntu.com-20120721175221-53m5pclzo992kawy
Tags: 2.0.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * cdrom.c: cdrom tools
3
3
 *****************************************************************************
4
4
 * Copyright (C) 1998-2001 the VideoLAN team
5
 
 * $Id: d95c8fde9c3646694210f34f71e9d07622b9533b $
 
5
 * $Id: cda55156faac70f12dbe518f38d62cd3075f7bed $
6
6
 *
7
7
 * Authors: Johan Bilien <jobi@via.ecp.fr>
8
8
 *          Gildas Bazin <gbazin@netcourrier.com>
819
819
    while( fgets( line, 1024, cuefile ) && i_tracks < INT_MAX-1 )
820
820
    {
821
821
        /* look for a TRACK line */
822
 
        char psz_dummy[9];
 
822
        char psz_dummy[10];
823
823
        if( !sscanf( line, "%9s", psz_dummy ) || strcmp(psz_dummy, "TRACK") )
824
824
            continue;
825
825