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
f5f70e2b
Commit
f5f70e2b
authored
May 21, 2002
by
Loïc Minier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixed a side-effect bug causing crashes on DVD title change
parent
9b3216c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
plugins/dvd/dvd_access.c
plugins/dvd/dvd_access.c
+7
-2
No files found.
plugins/dvd/dvd_access.c
View file @
f5f70e2b
...
...
@@ -8,7 +8,7 @@
* -dvd_udf to find files
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: dvd_access.c,v 1.1
7 2002/05/21 00:34:41 sam
Exp $
* $Id: dvd_access.c,v 1.1
8 2002/05/21 13:27:32 lool
Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
*
...
...
@@ -518,7 +518,12 @@ static ssize_t DVDRead( input_thread_t * p_input,
while
(
i_blocks
)
{
if
(
(
i_block_once
=
__MIN
(
LbMaxOnce
(
p_dvd
),
i_blocks
)
)
<=
0
)
i_block_once
=
LbMaxOnce
(
p_dvd
);
if
(
i_block_once
>
i_blocks
)
{
i_block_once
=
i_blocks
;
}
else
if
(
i_block_once
<=
0
)
{
/* EOT */
break
;
...
...
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