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
c4afdf59
Commit
c4afdf59
authored
Jul 25, 2008
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meta engine: add checks to verify that we indeed have the inputitem and it's dir when we use it.
parent
8005efa8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
modules/meta_engine/folder.c
modules/meta_engine/folder.c
+6
-1
No files found.
modules/meta_engine/folder.c
View file @
c4afdf59
...
@@ -73,9 +73,14 @@ static int FindMeta( vlc_object_t *p_this )
...
@@ -73,9 +73,14 @@ static int FindMeta( vlc_object_t *p_this )
int
i
=
0
;
int
i
=
0
;
struct
stat
a
;
struct
stat
a
;
char
psz_filename
[
MAX_PATH
];
char
psz_filename
[
MAX_PATH
];
if
(
!
p_item
)
return
VLC_EGENERIC
;
char
*
psz_dir
=
input_item_GetURI
(
p_item
);
char
*
psz_dir
=
input_item_GetURI
(
p_item
);
char
*
psz_buf
=
strrchr
(
psz_dir
,
'/'
);
if
(
!
psz_dir
)
return
VLC_EGENERIC
;
char
*
psz_buf
=
strrchr
(
psz_dir
,
'/'
);
if
(
psz_buf
)
if
(
psz_buf
)
{
{
psz_buf
++
;
psz_buf
++
;
...
...
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