Changeset 8002c90b632af06ea8ddfc5c50c16dc26f7c001a
- Timestamp:
- 06/07/08 15:46:16
(5 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1215351976 +0200
- git-parent:
[24298341eb3b322f6f4eba55ff8b58399890c72e]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1215347817 +0200
- Message:
playlist: Don't accept request on dead playlist.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2429834 |
r8002c90 |
|
| 78 | 78 | playlist_item_t *p_item, *p_node; |
|---|
| 79 | 79 | vlc_value_t val; |
|---|
| | 80 | |
|---|
| | 81 | if( !vlc_object_alive( p_playlist ) ) |
|---|
| | 82 | return VLC_EGENERIC; |
|---|
| 80 | 83 | |
|---|
| 81 | 84 | if( playlist_IsEmpty( p_playlist ) ) |
|---|