Changeset ae62adc7bf349fc963b53e3a99c5a0308bfb8627
- Timestamp:
- 02/10/07 04:50:10
(1 year ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1191293410 +0000
- git-parent:
[98a6a9349091549d591be703aad7392b47b4e2a6]
- git-author:
- Rafaël Carré <funman@videolan.org> 1191293410 +0000
- Message:
demux: fix a memory leak in flac & mpga when attachments are present
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r98a6a93 |
rae62adc |
|
| 207 | 207 | |
|---|
| 208 | 208 | TAB_CLEAN( p_sys->i_seekpoint, p_sys->seekpoint ); |
|---|
| | 209 | |
|---|
| | 210 | int i; |
|---|
| | 211 | for( i = 0; i < p_sys->i_attachments; i++ ) |
|---|
| | 212 | free( p_sys->attachments[i] ); |
|---|
| 209 | 213 | TAB_CLEAN( p_sys->i_attachments, p_sys->attachments); |
|---|
| 210 | 214 | |
|---|
| r98a6a93 |
rae62adc |
|
| 348 | 348 | if( p_sys->p_block_out ) block_Release( p_sys->p_block_out ); |
|---|
| 349 | 349 | |
|---|
| | 350 | int i; |
|---|
| | 351 | for( i = 0; i < p_sys->i_attachments; i++ ) |
|---|
| | 352 | free( p_sys->attachments[i] ); |
|---|
| 350 | 353 | TAB_CLEAN( p_sys->i_attachments, p_sys->attachments); |
|---|
| 351 | 354 | |
|---|