Changeset 136eb9e288cc80ffc46b9d0d6a99966b3dbf1670
- Timestamp:
- 30/05/08 15:23:22
(6 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1212153802 +0200
- git-parent:
[3d90c11d8e9c238cd594a52f3dd026dea7f5cd57]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1212153802 +0200
- Message:
Remove useless NULL check (p_sys->p_vout can never be NULL once the
filter was opened). (CID 110)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5e15258 |
r136eb9e |
|
| 490 | 490 | var_DelCallback( p_sys->p_vout, "mouse-y", MouseEvent, p_vout); |
|---|
| 491 | 491 | |
|---|
| 492 | | if( p_sys->p_vout ) |
|---|
| 493 | | { |
|---|
| 494 | | DEL_CALLBACKS( p_sys->p_vout, SendEvents ); |
|---|
| 495 | | vlc_object_detach( p_sys->p_vout ); |
|---|
| 496 | | vout_Destroy( p_sys->p_vout ); |
|---|
| 497 | | } |
|---|
| | 492 | DEL_CALLBACKS( p_sys->p_vout, SendEvents ); |
|---|
| | 493 | vlc_object_detach( p_sys->p_vout ); |
|---|
| | 494 | vout_Destroy( p_sys->p_vout ); |
|---|
| 498 | 495 | |
|---|
| 499 | 496 | if( p_sys->p_blend->p_module ) |
|---|