Changeset 41af59e14d20b4a03a210d00437b0dfbf202069a
- 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
| r1b09c02 |
r41af59e |
|
| 430 | 430 | |
|---|
| 431 | 431 | psz_type = strrchr( psz_arturl, '.' ); |
|---|
| 432 | | if( strlen( psz_type ) > 5 ) |
|---|
| | 432 | if( psz_type && strlen( psz_type ) > 5 ) |
|---|
| 433 | 433 | psz_type = NULL; /* remove extension if it's > to 4 characters */ |
|---|
| 434 | 434 | |
|---|