Changeset 2173760d296c26574722c178277f29709de32e17
- Timestamp:
- 27/01/03 23:50:01
(6 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1043707801 +0000
- git-parent:
[04b59c91686499bb07a0f5fee802580a8b4d4fdf]
- git-author:
- Sam Hocevar <sam@videolan.org> 1043707801 +0000
- Message:
- ./src/audio_output/output.c: fixed return with a value in function
returning void.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| raeade69 |
r2173760 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2002 VideoLAN |
|---|
| 5 | | * $Id: output.c,v 1.33 2003/01/23 17:13:28 massiot Exp $ |
|---|
| | 5 | * $Id: output.c,v 1.34 2003/01/27 22:50:01 sam Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 212 | 212 | void aout_OutputDelete( aout_instance_t * p_aout ) |
|---|
| 213 | 213 | { |
|---|
| 214 | | if ( p_aout->output.b_error ) return 0; |
|---|
| | 214 | if ( p_aout->output.b_error ) |
|---|
| | 215 | { |
|---|
| | 216 | return; |
|---|
| | 217 | } |
|---|
| | 218 | |
|---|
| 215 | 219 | module_Unneed( p_aout, p_aout->output.p_module ); |
|---|
| 216 | 220 | |
|---|
| … | … | |
| 219 | 223 | aout_FifoDestroy( p_aout, &p_aout->output.fifo ); |
|---|
| 220 | 224 | |
|---|
| 221 | | p_aout->output.b_error = 1; |
|---|
| | 225 | p_aout->output.b_error = VLC_TRUE; |
|---|
| 222 | 226 | } |
|---|
| 223 | 227 | |
|---|