Changeset 10f0097e3db6931ce1759d8a67a08c3a936b703d

Show
Ignore:
Timestamp:
01/09/07 17:50:54 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1188661854 +0000
git-parent:

[6c5d6837e484fc9d6e5ba2091ea7d2cac80c349d]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1188661854 +0000
Message:

Fix crash (once more, this would be easily avoided by
LOOKING AT THE COMPILER WARNING before -or even after- committing)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/input/meta.c

    r6830d8e r10f0097  
    440440        FILE *p_file = utf8_fopen( psz_filename+7, "w" ); 
    441441        if( p_file == NULL ) { 
    442             msg_Err( p_playlist, "Unable write album art in %s" ); 
     442            msg_Err( p_playlist, "Unable write album art in %s", 
     443                     psz_filename + 7 ); 
    443444            free( psz_arturl ); 
    444445            return VLC_EGENERIC;