Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
20695ef3
Commit
20695ef3
authored
Aug 15, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist_song: fix user-after-free bug
parent
9374e0f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
NEWS
+1
-0
playlist_song.c
src/playlist_song.c
+3
-1
No files found.
NEWS
View file @
20695ef3
...
...
@@ -11,6 +11,7 @@ ver 0.17.2 (2012/??/??)
- httpd: fix throttling bug after resuming playback
* mapper: fix non-UTF8 music directory name
* mapper: fix potential crash in file permission check
* playlist: fix use-after-free bug
ver 0.17.1 (2012/07/31)
...
...
src/playlist_song.c
View file @
20695ef3
...
...
@@ -69,7 +69,6 @@ apply_song_metadata(struct song *dest, const struct song *src)
}
else
{
tmp
=
song_file_new
(
dest
->
uri
,
NULL
);
merge_song_metadata
(
tmp
,
dest
,
src
);
song_free
(
dest
);
}
if
(
dest
->
tag
!=
NULL
&&
dest
->
tag
->
time
>
0
&&
...
...
@@ -80,6 +79,9 @@ apply_song_metadata(struct song *dest, const struct song *src)
(e.g. last track on a CUE file); fix it up here */
tmp
->
tag
->
time
=
dest
->
tag
->
time
-
src
->
start_ms
/
1000
;
if
(
!
song_in_database
(
dest
))
song_free
(
dest
);
return
tmp
;
}
...
...
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