Reacted on compiler warnings about uninitialized variables

This commit is contained in:
Thomas Schmitt 2011-12-25 11:04:44 +00:00
parent 74fa33bc42
commit 94c50a0145
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2011.12.25.105032"
#define Cdrskin_timestamP "2011.12.25.110440"

View File

@ -629,7 +629,7 @@ int burn_session_input_sheet_v07t(struct burn_session *session,
int int0x00 = 0x00, int0x01 = 0x01;
struct stat stbuf;
FILE *fp = NULL;
char *line = NULL, *eq_pos, *payload, *genre_text, track_txt[3];
char *line = NULL, *eq_pos, *payload, *genre_text = NULL, track_txt[3];
char *msg = NULL;
struct burn_track **tracks;

View File

@ -1604,7 +1604,7 @@ int burn_session_by_cue_file(struct burn_session *session, char *path,
unsigned char *payload;
struct stat stbuf;
FILE *fp = NULL;
struct burn_cue_file_cursor *crs;
struct burn_cue_file_cursor *crs = NULL;
static unsigned char dummy_cdtext[2] = {0, 0};