Changeset 41af59e14d20b4a03a210d00437b0dfbf202069a

Show
Ignore:
Timestamp:
25/01/08 15:12:36 (9 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1201270356 +0000
git-parent:

[a93540a4f6d2c63e5d56425e3a0e5ea33ee12406]

git-author:
Rafaël Carré <funman@videolan.org> 1201270356 +0000
Message:

fix segfault

Files:

Legend:

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

    r1b09c02 r41af59e  
    430430 
    431431    psz_type = strrchr( psz_arturl, '.' ); 
    432     if( strlen( psz_type ) > 5 ) 
     432    if( psz_type && strlen( psz_type ) > 5 ) 
    433433        psz_type = NULL; /* remove extension if it's > to 4 characters */ 
    434434