Changeset 78ea76bcf25b3546dc1de2de42877d469ec169bd
- Timestamp:
- 03/17/03 16:05:55
(5 years ago)
- Author:
- Sigmund Augdal Helberg <sigmunau@videolan.org>
- git-committer:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1047913555 +0000
- git-parent:
[53b609d6c3cb1439e394416fb66e57929e254bad]
- git-author:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1047913555 +0000
- Message:
fixed up http redirects when there are other items in the playlist.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7211d64 |
r78ea76b |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: http.c,v 1.25 2003/03/03 14:21:08 gbazin Exp $ |
|---|
| | 5 | * $Id: http.c,v 1.26 2003/03/17 15:05:55 sigmunau Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 340 | 340 | = VLC_TRUE; |
|---|
| 341 | 341 | playlist_Add( p_playlist, psz_value, |
|---|
| 342 | | PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END ); |
|---|
| | 342 | PLAYLIST_INSERT | PLAYLIST_GO, |
|---|
| | 343 | p_playlist->i_index + 1 ); |
|---|
| 343 | 344 | vlc_object_release( p_playlist ); |
|---|
| 344 | 345 | } |
|---|