Changeset 38ce0668f1010ae65fbc6ef0048b0d1133600997
- Timestamp:
- 01/09/07 16:08:39
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1188655719 +0000
- git-parent:
[33e3934efb71ef490c2e6ddac0a20e4892989fd9]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1188655719 +0000
- Message:
Another set of useless if statements
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r33e3934 |
r38ce066 |
|
| 312 | 312 | msg_Err( p_stream, "no suitable sout access module for `%s/%s://%s'", |
|---|
| 313 | 313 | psz_access, psz_mux, psz_url ); |
|---|
| 314 | | if( psz_access ) free( psz_access ); |
|---|
| 315 | | if( psz_mux ) free( psz_mux ); |
|---|
| | 314 | free( psz_access ); |
|---|
| | 315 | free( psz_mux ); |
|---|
| 316 | 316 | return VLC_EGENERIC; |
|---|
| 317 | 317 | } |
|---|
| … | … | |
| 326 | 326 | |
|---|
| 327 | 327 | sout_AccessOutDelete( p_access ); |
|---|
| 328 | | if( psz_access ) free( psz_access ); |
|---|
| 329 | | if( psz_mux ) free( psz_mux ); |
|---|
| | 328 | free( psz_access ); |
|---|
| | 329 | free( psz_mux ); |
|---|
| 330 | 330 | return VLC_EGENERIC; |
|---|
| 331 | 331 | } |
|---|
| … | … | |
| 388 | 388 | p_stream->p_sys->p_mux = p_mux; |
|---|
| 389 | 389 | |
|---|
| 390 | | if( psz_access ) free( psz_access ); |
|---|
| 391 | | if( psz_mux ) free( psz_mux ); |
|---|
| 392 | | if( psz_url ) free( psz_url ); |
|---|
| 393 | | |
|---|
| | 390 | free( psz_access ); |
|---|
| | 391 | free( psz_mux ); |
|---|
| | 392 | free( psz_url ); |
|---|
| 394 | 393 | |
|---|
| 395 | 394 | return VLC_SUCCESS; |
|---|