Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
ca5be7be
Commit
ca5be7be
authored
Jan 04, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix unlikely deadlock
parent
270299d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
modules/access/directory.c
modules/access/directory.c
+8
-5
No files found.
modules/access/directory.c
View file @
ca5be7be
...
...
@@ -182,6 +182,11 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len)
{
char
*
psz
;
int
i_mode
,
i_activity
;
char
*
psz_name
=
strdup
(
p_access
->
psz_path
);
if
(
psz_name
==
NULL
)
return
VLC_ENOMEM
;
playlist_t
*
p_playlist
=
pl_Yield
(
p_access
);
playlist_item_t
*
p_item_in_category
;
input_item_t
*
p_current_input
=
input_GetItem
(
...
...
@@ -189,13 +194,11 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len)
playlist_item_t
*
p_current
=
playlist_ItemGetByInput
(
p_playlist
,
p_current_input
,
VLC_FALSE
);
char
*
psz_name
=
strdup
(
p_access
->
psz_path
);
if
(
psz_name
==
NULL
)
return
VLC_ENOMEM
;
if
(
p_current
==
NULL
)
{
if
(
p_current
==
NULL
)
{
msg_Err
(
p_access
,
"unable to find item in playlist"
);
vlc_object_release
(
p_playlist
);
return
VLC_ENOOBJ
;
}
...
...
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