Changeset 381f286d8a64daf75929f713f4d781feab9308d0
- Timestamp:
- 20/08/08 19:45:27
(3 months ago)
- Author:
- Rémi Duraffort <ivoire@videolan.org>
- git-committer:
- Rémi Duraffort <ivoire@videolan.org> 1219254327 +0200
- git-parent:
[24adfd982d2cf6693245d77cf6877ea2c0aa8141]
- git-author:
- Rémi Duraffort <ivoire@videolan.org> 1219254327 +0200
- Message:
Fix warnings.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra48fa03 |
r381f286 |
|
| 82 | 82 | void *userdata ) |
|---|
| 83 | 83 | { |
|---|
| | 84 | (void)g; |
|---|
| 84 | 85 | bonjour_t *p_sys = (bonjour_t *)userdata; |
|---|
| 85 | 86 | |
|---|
| … | … | |
| 273 | 274 | avahi_free( p_sys->psz_txt ); |
|---|
| 274 | 275 | |
|---|
| 275 | | free( (void *)p_sys ); |
|---|
| | 276 | free( p_sys ); |
|---|
| 276 | 277 | |
|---|
| 277 | 278 | return NULL; |
|---|
| ra5c83dd |
r381f286 |
|
| 325 | 325 | psz_name, i_bind_port, psz_txt ); |
|---|
| 326 | 326 | free( psz_uri ); |
|---|
| 327 | | free( (void *)psz_txt ); |
|---|
| | 327 | free( psz_txt ); |
|---|
| 328 | 328 | |
|---|
| 329 | 329 | if( p_sys->p_bonjour == NULL ) |
|---|
| … | … | |
| 449 | 449 | static int Seek( sout_access_out_t *p_access, off_t i_pos ) |
|---|
| 450 | 450 | { |
|---|
| | 451 | (void)i_pos; |
|---|
| 451 | 452 | msg_Warn( p_access, "HTTP sout access cannot seek" ); |
|---|
| 452 | 453 | return VLC_EGENERIC; |
|---|