Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
431
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
1c3fc96a
Commit
1c3fc96a
authored
2 years ago
by
François Cartegnie
Browse files
Options
Downloads
Patches
Plain Diff
osd: epg: fix null deref on missing next event
refs
#26905
parent
941479da
No related branches found
Branches containing commit
No related tags found
Loading
Pipeline
#224132
passed with stage
Stage:
in 16 minutes and 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/video_output/video_epg.c
+1
-1
1 addition, 1 deletion
src/video_output/video_epg.c
with
1 addition
and
1 deletion
src/video_output/video_epg.c
+
1
−
1
View file @
1c3fc96a
...
...
@@ -374,7 +374,7 @@ static void vout_FillRightPanel(epg_spu_updater_sys_t *p_sys,
last_ptr
=
&
(
*
last_ptr
)
->
p_next
;
}
if
(
p_sys
->
time
)
if
(
p_sys
->
time
&&
p_sys
->
epg
->
p_current
)
{
f_progress
=
(
p_sys
->
time
-
p_sys
->
epg
->
p_current
->
i_start
)
/
(
float
)
p_sys
->
epg
->
p_current
->
i_duration
;
...
...
This diff is collapsed.
Click to expand it.
François Cartegnie
@fcartegnie
mentioned in merge request
!1979 (merged)
·
2 years ago
mentioned in merge request
!1979 (merged)
mentioned in merge request !1979
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment