Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
f1b7f5e1
Commit
f1b7f5e1
authored
Jun 18, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* backport [20618] to stable branch (in case we release it one day).
parent
088eaad7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
NEWS
NEWS
+6
-0
configure.ac
configure.ac
+2
-2
src/input/input.c
src/input/input.c
+1
-1
No files found.
NEWS
View file @
f1b7f5e1
$Id$
Changes between 0.8.6c and 0.8.6d (if we ever release it):
----------------------------------------------------------
Various bugfixes:
* Fix invalid free in bookmarks loading code.
Changes between 0.8.6b and 0.8.6c:
----------------------------------
...
...
configure.ac
View file @
f1b7f5e1
dnl Autoconf settings for vlc
AC_INIT(vlc,0.8.6
c
)
AC_INIT(vlc,0.8.6
d
)
VERSION_MAJOR="0"
VERSION_MINOR="8"
VERSION_REVISION="6"
VERSION_EXTRA="
c
"
VERSION_EXTRA="
d
"
CONFIGURE_LINE="$0 $*"
CODENAME="Janus"
...
...
src/input/input.c
View file @
f1b7f5e1
...
...
@@ -201,7 +201,7 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
*
psz_end
=
0
;
if
(
!
strncmp
(
psz_start
,
"name="
,
5
)
)
{
p_seekpoint
->
psz_name
=
psz_start
+
5
;
p_seekpoint
->
psz_name
=
strdup
(
psz_start
+
5
)
;
}
else
if
(
!
strncmp
(
psz_start
,
"bytes="
,
6
)
)
{
...
...
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