changeset 87:fabe64e89949 trunk

[svn] - mtime=-1 has been introduced to represent "uninitialized".
author yaz
date Fri, 06 Oct 2006 10:51:55 -0700
parents 60cf31332daa
children 80a28e538008
files ChangeLog src/xspf/xspf.c
diffstat 2 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Oct 05 02:33:10 2006 -0700
+++ b/ChangeLog	Fri Oct 06 10:51:55 2006 -0700
@@ -1,3 +1,11 @@
+2006-10-05 09:33:10 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [172]
+  - some improvements to the cuesheet plugin, not totally there yet ;)
+  
+  trunk/src/cue/cuesheet.c |   29 ++++++++++++++++++++++++++---
+  1 file changed, 26 insertions(+), 3 deletions(-)
+
+
 2006-10-05 04:01:38 +0000  Jonathan Schleifer <js@h3c.de>
   revision [170]
   - Imported a few changes from alac decoder 0.1.3
--- a/src/xspf/xspf.c	Thu Oct 05 02:33:10 2006 -0700
+++ b/src/xspf/xspf.c	Fri Oct 06 10:51:55 2006 -0700
@@ -140,10 +140,15 @@
 		}
 
 	}
+
 	if (tuple->length == 0) {
 		tuple->length = -1;
 	}
 
+	if (tuple->mtime == 0) {
+		tuple->mtime = -1;
+	}
+
 	locale_uri = b64filename ? b64filename : location;
 
 	if(locale_uri){