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
19e9a808
Commit
19e9a808
authored
Dec 19, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Backported a VCD crash fix from the main branch.
parent
7b888695
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
plugins/vcd/Makefile
plugins/vcd/Makefile
+1
-1
plugins/vcd/input_vcd.c
plugins/vcd/input_vcd.c
+3
-3
No files found.
plugins/vcd/Makefile
View file @
19e9a808
...
...
@@ -7,7 +7,7 @@
# Objects
#
PLUGIN_VCD
=
vcd.o input_vcd.o linux_cdrom_tools.o
$(OBJ_VCD)
PLUGIN_VCD
=
vcd.o input_vcd.o linux_cdrom_tools.o
BUILTIN_VCD
=
$(PLUGIN_VCD:%.o=BUILTIN_%.o)
ALL_OBJ
=
$(PLUGIN_VCD)
$(BUILTIN_VCD)
...
...
plugins/vcd/input_vcd.c
View file @
19e9a808
...
...
@@ -615,7 +615,7 @@ static int VCDRead( input_thread_t * p_input,
break
;
}
pp_packets
[
i_packet
]
=
NULL
;
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
...
...
@@ -632,8 +632,8 @@ static int VCDRead( input_thread_t * p_input,
}*/
b_eof
=
p_vcd
->
b_end_of_track
;
/*FIXME&& ( ( p_vcd->current_track ) >= p_vcd->nb_tracks - 1);*/
b_eof
=
p_vcd
->
b_end_of_track
&&
(
(
p_vcd
->
current_track
)
>=
p_vcd
->
nb_tracks
-
1
);
if
(
b_eof
)
{
...
...
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