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:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user