Bug fix for mmc_have_interface.
checK_paranoia.sh.in: fix bug in returning success on a core dump win32.c: some small changes - more later. image/*.c: set run_mmc_cmd NULL explicitly.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
$Id: bincue.c,v 1.12 2005/02/06 11:13:37 rocky Exp $
|
||||
$Id: bincue.c,v 1.13 2005/02/11 01:34:12 rocky Exp $
|
||||
|
||||
Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
|
||||
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
|
||||
@@ -26,7 +26,7 @@
|
||||
(*.cue).
|
||||
*/
|
||||
|
||||
static const char _rcsid[] = "$Id: bincue.c,v 1.12 2005/02/06 11:13:37 rocky Exp $";
|
||||
static const char _rcsid[] = "$Id: bincue.c,v 1.13 2005/02/11 01:34:12 rocky Exp $";
|
||||
|
||||
#include "image.h"
|
||||
#include "cdio_assert.h"
|
||||
@@ -1163,6 +1163,7 @@ cdio_open_cue (const char *psz_cue_name)
|
||||
_funcs.read_mode1_sectors = _read_mode1_sectors_bincue;
|
||||
_funcs.read_mode2_sector = _read_mode2_sector_bincue;
|
||||
_funcs.read_mode2_sectors = _read_mode2_sectors_bincue;
|
||||
_funcs.run_mmc_cmd = NULL;
|
||||
_funcs.set_arg = _set_arg_image;
|
||||
|
||||
if (NULL == psz_cue_name) return NULL;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
$Id: cdrdao.c,v 1.13 2005/02/06 11:13:37 rocky Exp $
|
||||
$Id: cdrdao.c,v 1.14 2005/02/11 01:34:12 rocky Exp $
|
||||
|
||||
Copyright (C) 2004, 2005 Rocky Bernstein <rocky@panix.com>
|
||||
toc reading routine adapted from cuetools
|
||||
@@ -25,7 +25,7 @@
|
||||
(*.cue).
|
||||
*/
|
||||
|
||||
static const char _rcsid[] = "$Id: cdrdao.c,v 1.13 2005/02/06 11:13:37 rocky Exp $";
|
||||
static const char _rcsid[] = "$Id: cdrdao.c,v 1.14 2005/02/11 01:34:12 rocky Exp $";
|
||||
|
||||
#include "image.h"
|
||||
#include "cdio_assert.h"
|
||||
@@ -1290,6 +1290,7 @@ cdio_open_cdrdao (const char *psz_cue_name)
|
||||
_funcs.read_mode1_sectors = _read_mode1_sectors_cdrdao;
|
||||
_funcs.read_mode2_sector = _read_mode2_sector_cdrdao;
|
||||
_funcs.read_mode2_sectors = _read_mode2_sectors_cdrdao;
|
||||
_funcs.run_mmc_cmd = NULL;
|
||||
_funcs.set_arg = _set_arg_image;
|
||||
_funcs.set_speed = cdio_generic_unimplemented_set_speed;
|
||||
_funcs.set_blocksize = cdio_generic_unimplemented_set_blocksize;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
$Id: nrg.c,v 1.12 2005/02/09 09:55:38 rocky Exp $
|
||||
$Id: nrg.c,v 1.13 2005/02/11 01:34:12 rocky Exp $
|
||||
|
||||
Copyright (C) 2003, 2004, 2005 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.12 2005/02/09 09:55:38 rocky Exp $";
|
||||
static const char _rcsid[] = "$Id: nrg.c,v 1.13 2005/02/11 01:34:12 rocky Exp $";
|
||||
|
||||
|
||||
/* reader */
|
||||
@@ -1243,6 +1243,7 @@ cdio_open_nrg (const char *psz_source)
|
||||
_funcs.read_mode1_sectors = _read_mode1_sectors_nrg;
|
||||
_funcs.read_mode2_sector = _read_mode2_sector_nrg;
|
||||
_funcs.read_mode2_sectors = _read_mode2_sectors_nrg;
|
||||
_funcs.run_mmc_cmd = NULL;
|
||||
_funcs.set_arg = _set_arg_image;
|
||||
|
||||
_data = calloc(1, sizeof (_img_private_t));
|
||||
|
||||
Reference in New Issue
Block a user