[vlc-devel] commit: cdda: asprintf checks. (Pierre d'Herbemont )
git version control
git at videolan.org
Thu Aug 14 12:49:02 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Thu Aug 14 12:51:53 2008 +0200| [36db7779d3f5748b1ec2adb82d62e0cfdb254aac] | committer: Pierre d'Herbemont
cdda: asprintf checks.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=36db7779d3f5748b1ec2adb82d62e0cfdb254aac
---
modules/access/cdda/info.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/access/cdda/info.c b/modules/access/cdda/info.c
index 67e9b32..b301315 100644
--- a/modules/access/cdda/info.c
+++ b/modules/access/cdda/info.c
@@ -904,7 +904,7 @@ CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda,
input_title_t *t = p_cdda->p_title[0] = //i_track-i_first_track] =
vlc_input_title_New();
- if( asprintf( &t->psz_name, _("Track %i"), i_track ) == -1 )
+ if( asprintf( &t->psz_name, _("Track %i"), i_track ) == -1 )
t->psz_name = NULL;
t->i_size = i_track_frames * (int64_t) CDIO_CD_FRAMESIZE_RAW;
t->i_length = INT64_C(1000000) * t->i_size / CDDA_FREQUENCY_SAMPLE / 4;
@@ -936,7 +936,7 @@ CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda,
t = p_cdda->p_title[i] = vlc_input_title_New();
- if( asprintf( &t->psz_name, _("Track %i"), i_track ) )
+ if( asprintf( &t->psz_name, _("Track %i"), i_track ) == -1 )
t->psz_name = NULL;
t->i_size = i_track_frames * (int64_t) CDIO_CD_FRAMESIZE_RAW;
More information about the vlc-devel
mailing list