Reacted on compiler warnings about uninitialized variables

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

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};