Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
a9a5e483
Commit
a9a5e483
authored
Jul 14, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
directory: Don't get stuck if playlist dies. And remove an unused param.
parent
1fac4d77
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
modules/access/directory.c
modules/access/directory.c
+10
-5
No files found.
modules/access/directory.c
View file @
a9a5e483
...
...
@@ -136,7 +136,7 @@ static int DemuxControl( demux_t *p_demux, int i_query, va_list args );
static
int
ReadDir
(
playlist_t
*
,
const
char
*
psz_name
,
int
i_mode
,
playlist_item_t
*
,
playlist_item_t
*
,
input_item_t
*
,
playlist_item_t
*
,
input_item_t
*
,
DIR
*
handle
,
stat_list_t
*
stats
);
static
DIR
*
OpenDir
(
vlc_object_t
*
obj
,
const
char
*
psz_name
);
...
...
@@ -256,7 +256,7 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len)
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_current
,
false
);
ReadDir
(
p_playlist
,
psz_name
,
i_mode
,
p_
current
,
p_
item_in_category
,
ReadDir
(
p_playlist
,
psz_name
,
i_mode
,
p_item_in_category
,
p_current_input
,
(
DIR
*
)
p_access
->
p_sys
,
NULL
);
playlist_Signal
(
p_playlist
);
...
...
@@ -365,7 +365,7 @@ struct stat_list_t
* ReadDir: read a directory and add its content to the list
*****************************************************************************/
static
int
ReadDir
(
playlist_t
*
p_playlist
,
const
char
*
psz_name
,
int
i_mode
,
playlist_item_t
*
p_parent
,
int
i_mode
,
playlist_item_t
*
p_parent_category
,
input_item_t
*
p_current_input
,
DIR
*
handle
,
stat_list_t
*
stparent
)
...
...
@@ -374,6 +374,9 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
int
i_dir_content
,
i
,
i_return
=
VLC_SUCCESS
;
playlist_item_t
*
p_node
;
if
(
!
vlc_object_alive
(
p_playlist
)
)
return
VLC_SUCCESS
;
char
**
ppsz_extensions
=
NULL
;
int
i_extensions
=
0
;
char
*
psz_ignore
;
...
...
@@ -487,7 +490,7 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
/* If we had the parent in category, the it is now node.
* Else, we still don't have */
i_return
=
ReadDir
(
p_playlist
,
psz_uri
,
MODE_EXPAND
,
p_
node
,
p_
parent_category
?
p_node
:
NULL
,
p_parent_category
?
p_node
:
NULL
,
p_current_input
,
subdir
,
&
stself
);
closedir
(
subdir
);
if
(
i_return
)
...
...
@@ -518,9 +521,10 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
memmove
(
psz_uri
+
7
,
psz_uri
,
sizeof
(
psz_uri
)
-
7
);
memcpy
(
psz_uri
,
"file://"
,
7
);
p_input
=
input_ItemNewWithType
(
VLC_OBJECT
(
p_playlist
)
,
p_input
=
input_ItemNewWithType
(
p_playlist
,
psz_uri
,
entry
,
0
,
NULL
,
-
1
,
ITEM_TYPE_FILE
);
msg_Dbg
(
p_playlist
,
"dir: created %s"
,
p_input
->
psz_name
);
if
(
p_input
!=
NULL
)
{
if
(
p_current_input
)
...
...
@@ -531,6 +535,7 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
PLAYLIST_NO_REBUILD
,
PLAYLIST_END
,
NULL
,
NULL
,
false
);
msg_Dbg
(
p_playlist
,
"dir: Deleting %s"
,
p_input
->
psz_name
);
vlc_gc_decref
(
p_input
);
if
(
i_ret
!=
VLC_SUCCESS
)
return
VLC_EGENERIC
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment