Changeset 6ccfada5ee71ecb64056025638c9791808724bba
- Timestamp:
- 23/06/03 15:45:30
(5 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1056375930 +0000
- git-parent:
[0c0ca771b893e051e3e3e69218e760e844dd1364]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1056375930 +0000
- Message:
Fixed a segfault that could happen if you have ipv6 support enabled, but no address
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0c0ca77 |
r6ccfada |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: standard.c,v 1.5 2003/06/23 11:41:26 zorglub Exp $ |
|---|
| | 5 | * $Id: standard.c,v 1.6 2003/06/23 13:45:30 zorglub Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 60 | 60 | sout_mux_t *p_mux; |
|---|
| 61 | 61 | sap_session_t *p_sap; |
|---|
| 62 | | unsigned int b_sap; |
|---|
| | 62 | vlc_bool_t b_sap; |
|---|
| 63 | 63 | }; |
|---|
| 64 | 64 | |
|---|
| r0c0ca77 |
r6ccfada |
|
| 99 | 99 | { |
|---|
| 100 | 100 | msg_Warn( p_sout, "failed to open a connection (udp)" ); |
|---|
| | 101 | return NULL; |
|---|
| 101 | 102 | } |
|---|
| 102 | 103 | module_Unneed( p_sout, p_network ); |
|---|
| … | … | |
| 168 | 169 | { |
|---|
| 169 | 170 | msg_Warn( p_sout, "failed to open a connection (udp)" ); |
|---|
| | 171 | return NULL; |
|---|
| 170 | 172 | } |
|---|
| 171 | 173 | module_Unneed( p_sout, p_network ); |
|---|