Changeset 83c846d47f97c8ecde8183a724cf891f1a3d1485
- Timestamp:
- 06/06/07 17:37:02
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1181144222 +0000
- git-parent:
[13b97d7c6ef5ab2531aafac4c4128513e1f92edc]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1181144222 +0000
- Message:
MMSH connection error handling fix from Alex Antropoff
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2149506 |
r83c846d |
|
| 567 | 567 | E_( GenerateGuid )( &p_sys->guid ); |
|---|
| 568 | 568 | |
|---|
| 569 | | OpenConnection( p_access ); |
|---|
| | 569 | if( OpenConnection( p_access ) ) |
|---|
| | 570 | return VLC_EGENERIC; |
|---|
| 570 | 571 | |
|---|
| 571 | 572 | net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, |
|---|
| … | … | |
| 712 | 713 | return VLC_EGENERIC; |
|---|
| 713 | 714 | } |
|---|
| | 715 | |
|---|
| 714 | 716 | static void GetHeader( access_t *p_access ) |
|---|
| 715 | 717 | { |
|---|
| … | … | |
| 766 | 768 | } |
|---|
| 767 | 769 | |
|---|
| 768 | | OpenConnection( p_access ); |
|---|
| | 770 | if( OpenConnection( p_access ) ) |
|---|
| | 771 | return VLC_EGENERIC; |
|---|
| 769 | 772 | |
|---|
| 770 | 773 | net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, |
|---|