Changeset bf6537c099f4ede86946a7a58d168e996327f544
- Timestamp:
- 04/01/08 23:06:37
(5 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1207083997 +0200
- git-parent:
[9de3b003216bf70d3617968b5175672bbf819213]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1207083954 +0200
- Message:
playlist: Fix a typo.
This fixes bbf6e4fecf2f42178726ddbcf050c03b6e28b749. Apologize to funman II.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3f5c8f4 |
rbf6537c |
|
| 486 | 486 | |
|---|
| 487 | 487 | playlist_MLDump( p_playlist ); |
|---|
| 488 | | /* We don't need the media library anymore */ |
|---|
| 489 | | |
|---|
| 490 | | /* Because this nasty recursive function decreases the |
|---|
| | 488 | |
|---|
| | 489 | /* Because this recursive function decreases the |
|---|
| 491 | 490 | * p_playlist->p_ml_category refcount, it may get deleted. |
|---|
| 492 | 491 | * However we will delete the p_playlist->p_ml_category in the |
|---|
| 493 | 492 | * following FOREACH. */ |
|---|
| 494 | | vlc_gc_incref( p_playlist->p_ml_category ); |
|---|
| 495 | | |
|---|
| | 493 | vlc_gc_incref( p_playlist->p_ml_category->p_input ); |
|---|
| | 494 | |
|---|
| | 495 | /* We don't need the media library anymore */ |
|---|
| 496 | 496 | /* Decref all subitems, and the given items */ |
|---|
| 497 | 497 | recursively_decref( p_playlist->p_ml_category ); |
|---|