cdio_private.h: Remove type mismatch warning on get_track_pregap_lba

when compiling image drivers.

nrg.c: initialize previously uninitialzied field. Bug found by Robert
       William Fuller.

cvs2cl_usermap: add esdead and karl

NEWS: try to track what's been happening.
This commit is contained in:
rocky
2008-03-21 10:19:38 +00:00
parent 18f3a6f9a1
commit 9040ae06a9
4 changed files with 18 additions and 6 deletions

13
NEWS
View File

@@ -1,7 +1,16 @@
$Id: NEWS,v 1.118 2008/03/18 00:37:20 karl Exp $
$Id: NEWS,v 1.119 2008/03/21 10:19:38 rocky Exp $
version 0.81cvs
- license of manual now GFDL 1.2 or later, with no invariant sections.
- Nero image handling more complete.
CD-Text processing.
DAO in read_audio_sectors
- Allow reading pregap of a track via get_track_pregap_lsn(). Add
Section on "CD-DA pregap" in libcdio manual
version 0.80
2008-03-15
@@ -403,4 +412,4 @@ version 0.1
Routines split off from VCDImager.
$Id: NEWS,v 1.118 2008/03/18 00:37:20 karl Exp $
$Id: NEWS,v 1.119 2008/03/21 10:19:38 rocky Exp $

View File

@@ -1,5 +1,7 @@
edsdead:Robert William Fuller
flameeyes:Diego 'Flameeyes' Petten<65>
hvr:Herbert Valerio Riedel
karl:Karl Berry
nboullis:Nicolas Boullis
rocky:Rocky Bernstein
thesin:Justin F. Hallett

View File

@@ -1,5 +1,5 @@
/*
$Id: cdio_private.h,v 1.33 2008/03/20 01:40:29 edsdead Exp $
$Id: cdio_private.h,v 1.34 2008/03/21 10:19:38 rocky Exp $
Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
@@ -275,7 +275,7 @@ extern "C" {
Note: string is malloc'd so caller has to free() the returned
string when done with it.
*/
char * (*get_track_isrc) ( const CdIo_t *p_cdio, track_t i_track );
char * (*get_track_isrc) ( const void *p_env, track_t i_track );
/*!
Get format of track.

View File

@@ -1,5 +1,5 @@
/*
$Id: nrg.c,v 1.29 2008/03/21 08:06:36 edsdead Exp $
$Id: nrg.c,v 1.30 2008/03/21 10:19:38 rocky Exp $
Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein <rocky@panix.com>
Copyright (C) 2001, 2003 Herbert Valerio Riedel <hvr@gnu.org>
@@ -46,7 +46,7 @@
#include "_cdio_stdio.h"
#include "nrg.h"
static const char _rcsid[] = "$Id: nrg.c,v 1.29 2008/03/21 08:06:36 edsdead Exp $";
static const char _rcsid[] = "$Id: nrg.c,v 1.30 2008/03/21 10:19:38 rocky Exp $";
nero_id_t nero_id;
nero_dtype_t nero_dtype;
@@ -832,6 +832,7 @@ _lseek_nrg (void *p_user_data, off_t offset, int whence)
unsigned int i;
p_env->pos.lba = 0;
for (i=0; i<p_env->gen.i_tracks; i++) {
track_info_t *this_track=&(p_env->tocent[i]);
p_env->pos.index = i;