Changeset 82e52ea89110535cad86fac7ab77e17bc7101100
- Timestamp:
- 05/14/08 16:51:26
(3 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1210776686 +0200
- git-parent:
[4cc4c675d99ac00cce22edf44154c5379e051bff]
- git-author:
- Rafaël Carré <funman@videolan.org> 1210776686 +0200
- Message:
Fix memory leak in mosaic bridge
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r27d483e |
r82e52ea |
|
| 484 | 484 | if ( p_sys->p_decoder != NULL ) |
|---|
| 485 | 485 | { |
|---|
| 486 | | picture_t **pp_ring = p_sys->p_decoder->p_owner->pp_pics; |
|---|
| | 486 | decoder_owner_sys_t *p_owner = p_sys->p_decoder->p_owner; |
|---|
| 487 | 487 | |
|---|
| 488 | 488 | if( p_sys->p_decoder->p_module ) |
|---|
| … | … | |
| 491 | 491 | vlc_object_release( p_sys->p_decoder ); |
|---|
| 492 | 492 | |
|---|
| | 493 | picture_t **pp_ring = p_owner->pp_pics; |
|---|
| 493 | 494 | for( i = 0; i < PICTURE_RING_SIZE; i++ ) |
|---|
| 494 | 495 | { |
|---|
| … | … | |
| 500 | 501 | } |
|---|
| 501 | 502 | } |
|---|
| | 503 | free( p_owner ); |
|---|
| 502 | 504 | } |
|---|
| 503 | 505 | |
|---|