[Swfdec-commits] Branch '0.6' - 2 commits - NEWS swfdec/swfdec_as_date.c swfdec/swfdec_as_strings.c
Benjamin Otte
company at kemper.freedesktop.org
Tue Jul 29 01:54:34 PDT 2008
NEWS | 12 ++++++++++++
swfdec/swfdec_as_date.c | 2 +-
swfdec/swfdec_as_strings.c | 1 +
3 files changed, 14 insertions(+), 1 deletion(-)
New commits:
commit 8290ad31642027169d6fdac852e60375a5b40f53
Author: Benjamin Otte <otte at gnome.org>
Date: Tue Jul 29 10:47:29 2008 +0200
use a garbage-collected string here (oops)
diff --git a/swfdec/swfdec_as_date.c b/swfdec/swfdec_as_date.c
index 88bf688..fe2356e 100644
--- a/swfdec/swfdec_as_date.c
+++ b/swfdec/swfdec_as_date.c
@@ -553,7 +553,7 @@ swfdec_as_date_toString (SwfdecAsContext *cx, SwfdecAsObject *object,
SWFDEC_AS_CHECK (SWFDEC_TYPE_AS_DATE, &date, "");
if (!swfdec_as_date_is_valid (date)) {
- SWFDEC_AS_VALUE_SET_STRING (ret, "Invalid Date");
+ SWFDEC_AS_VALUE_SET_STRING (ret, SWFDEC_AS_STR_Invalid_Date);
return;
}
diff --git a/swfdec/swfdec_as_strings.c b/swfdec/swfdec_as_strings.c
index 50db45a..e7428a4 100644
--- a/swfdec/swfdec_as_strings.c
+++ b/swfdec/swfdec_as_strings.c
@@ -491,5 +491,6 @@ const char swfdec_as_strings[] =
SWFDEC_AS_CONSTANT_STRING ("height")
SWFDEC_AS_CONSTANT_STRING ("deblocking")
SWFDEC_AS_CONSTANT_STRING ("smoothing")
+ SWFDEC_AS_CONSTANT_STRING ("Invalid Date")
/* add more here */
;
commit f10a17799d610559b1ac1ca994756a72528bbf58
Author: Benjamin Otte <otte at gnome.org>
Date: Tue Jul 29 10:16:23 2008 +0200
update NEWS for 0.6.8
diff --git a/NEWS b/NEWS
index f93dfcc..a17846c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,16 @@
+ 0.6.8 ("Mario Rush")
+
+And another bugfix release.
+- fix a crash when decoding 1x1 JPEG images
+- fix a crash in XMLSocket.send
+- fix crashes when FLV decoding was aborted
+- fix a crash in exception handling code
+- fix some infinite loops with prototype loops
+- fix crasher when handling broken dates
+- fix crashers with native constructors found in testing
+- compatibility fixes: compile with gold linker, make includes work from C++
+
0.6.6 ("Faith Fighter")
Here's another bugfix release.
More information about the Swfdec-commits
mailing list