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
70d6e3ee
Commit
70d6e3ee
authored
Nov 10, 2008
by
Led
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.10.4-rc2
parent
57a230e3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
ChangeLog
ChangeLog
+1
-0
tag.c
src/tag.c
+1
-1
No files found.
ChangeLog
View file @
70d6e3ee
...
...
@@ -3,6 +3,7 @@ ver 0.10.4 (2004/5/26)
2) Fix an infinte loop when writing to an interface and it has expired
3) Fix a segfault in decoding flac's
4) Ingore CRC stuff in mp3's since some encoders did not compute the CRC correctly
5) Fix a segfault in processing faulty mp4 metadata
ver 0.10.3 (2004/4/2)
1) Fix a segfault when a blanck line is sent from a client
...
...
src/tag.c
View file @
70d6e3ee
...
...
@@ -274,7 +274,7 @@ MpdTag * mp4TagDup(char * utf8file) {
int
mp4MetadataFound
=
0
;
ret
=
mp4DataDup
(
utf8file
,
&
mp4MetadataFound
);
if
(
!
mp4MetadataFound
)
{
if
(
ret
&&
!
mp4MetadataFound
)
{
MpdTag
*
temp
=
id3Dup
(
utf8file
);
if
(
temp
)
{
temp
->
time
=
ret
->
time
;
...
...
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