Changeset 4a1b6b00bae98767ddf5ae84c571859cb51be630
- Timestamp:
- 20/07/07 01:05:27
(1 year ago)
- Author:
- Bernie Purcell <bitmap@videolan.org>
- git-committer:
- Bernie Purcell <bitmap@videolan.org> 1184886327 +0000
- git-parent:
[14b5b5ff59b7f8cd78b357c3136c8cc8b2b67f32]
- git-author:
- Bernie Purcell <bitmap@videolan.org> 1184886327 +0000
- Message:
(hopefully) a fix for issue found by Ilkka Ollakka introduced in commit 20729
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2293854 |
r4a1b6b0 |
|
| 2405 | 2405 | p_region_out->i_y = p_region_in->i_y; |
|---|
| 2406 | 2406 | |
|---|
| 2407 | | if( rv == VLC_SUCCESS ) |
|---|
| | 2407 | if(( rv == VLC_SUCCESS ) && ( i_len > 0 )) |
|---|
| 2408 | 2408 | { |
|---|
| 2409 | 2409 | rv = ProcessLines( p_filter, psz_text, i_len, i_runs, |
|---|
| … | … | |
| 2422 | 2422 | * properly. |
|---|
| 2423 | 2423 | */ |
|---|
| 2424 | | if( rv == VLC_SUCCESS ) |
|---|
| | 2424 | if(( rv == VLC_SUCCESS ) && ( i_len > 0 )) |
|---|
| 2425 | 2425 | { |
|---|
| 2426 | 2426 | if( config_GetInt( p_filter, "freetype-yuvp" ) ) |
|---|