Changeset 1d1d48dc4814b98578e6717285466e6b2f134eb5
- Timestamp:
- 03/11/07 00:11:00
(1 year ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1173568260 +0000
- git-parent:
[67da4884c3b2934ce028b9c437f23b3a5cfc9990]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1173568260 +0000
- Message:
assert if p_current is NULL, it should be valid
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rdc7a9d0 |
r1d1d48d |
|
| 52 | 52 | { |
|---|
| 53 | 53 | playlist_item_t *p_current = p_root->pp_children[i]; |
|---|
| 54 | | if( !p_current ) |
|---|
| 55 | | continue; |
|---|
| | 54 | assert( p_current ); |
|---|
| 56 | 55 | |
|---|
| 57 | 56 | if( p_current->i_flags & PLAYLIST_SAVE_FLAG ) |
|---|
| … | … | |
| 120 | 119 | return VLC_SUCCESS; |
|---|
| 121 | 120 | } |
|---|
| 122 | | |
|---|