Changeset 49bc02ec7379d9d357fdc1e31e740fdcab3bebfa
- Timestamp:
- 29/03/08 14:16:42
(8 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1206796602 +0100
- git-parent:
[a9a95bcee8725f94b6057073778c1721785569d7]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1206796176 +0100
- Message:
description: A buggy case needs an assert.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r52e95c9 |
r49bc02e |
|
| 98 | 98 | |
|---|
| 99 | 99 | /* It can happen only if buggy */ |
|---|
| 100 | | if( p_sys->p_input ) |
|---|
| 101 | | vlc_object_release( p_sys->p_input ); |
|---|
| | 100 | assert( !p_sys->p_input ) |
|---|
| | 101 | |
|---|
| 102 | 102 | free( p_sys ); |
|---|
| 103 | 103 | } |
|---|