Changeset 02c821f546ecadf9ee378915cec1e1a77615095a
- Timestamp:
- 05/30/08 13:12:12
(3 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1212145932 +0200
- git-parent:
[6257a24fc3745efc9a1a9b140781e610f80320e9]
- git-author:
- Rafaël Carré <funman@videolan.org> 1212145922 +0200
- Message:
Fix double (or up to 2sizeof(int) times)
Reported by Coverity scan : CID 142
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfc9f851 |
r02c821f |
|
| 449 | 449 | free( p_sys->list[p_sys->i_list]->psz_path ); |
|---|
| 450 | 450 | free( p_sys->list[p_sys->i_list] ); |
|---|
| 451 | | free( p_sys->list ); |
|---|
| 452 | | } |
|---|
| 453 | | |
|---|
| 454 | | free( s->p_sys ); |
|---|
| | 451 | } |
|---|
| | 452 | |
|---|
| | 453 | free( p_sys->list ); |
|---|
| | 454 | free( p_sys ); |
|---|
| | 455 | |
|---|
| 455 | 456 | vlc_object_release( s ); |
|---|
| 456 | 457 | } |
|---|