Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
719c0015
Commit
719c0015
authored
May 21, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ASX: fix NULL derefence (LP#785979)
Regression introduced by commit
4a590357
.
parent
0a1d5031
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
modules/demux/playlist/asx.c
modules/demux/playlist/asx.c
+9
-6
No files found.
modules/demux/playlist/asx.c
View file @
719c0015
...
...
@@ -439,11 +439,15 @@ static int Demux( demux_t *p_demux )
}
else
continue
;
}
if
(
(
psz_parse
=
strcasestr
(
psz_parse
,
"/>"
)
)
)
psz_parse
+=
2
;
else
if
(
(
psz_parse
=
strcasestr
(
psz_parse
,
"</MoreInfo>"
)
)
)
psz_parse
+=
11
;
else
continue
;
if
(
(
psz_backup
=
strcasestr
(
psz_parse
,
"/>"
)
)
)
psz_parse
=
psz_backup
+
2
;
else
if
(
(
psz_backup
=
strcasestr
(
psz_parse
,
"</MoreInfo>"
)
)
)
psz_parse
=
psz_backup
+
11
;
else
{
psz_parse
=
NULL
;
continue
;
}
}
else
if
(
!
strncasecmp
(
psz_parse
,
"<ABSTRACT>"
,
10
)
)
{
...
...
@@ -483,7 +487,6 @@ static int Demux( demux_t *p_demux )
}
if
(
(
psz_parse
=
strcasestr
(
psz_parse
,
"/>"
)
)
)
psz_parse
+=
2
;
else
continue
;
}
else
if
(
!
strncasecmp
(
psz_parse
,
"</Entry>"
,
8
)
)
{
...
...
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