r854 - in /etch/evolution-data-server/debian: changelog patches/92_imap-negative-array-index.patch

lool at users.alioth.debian.org lool at users.alioth.debian.org
Thu Jun 21 12:15:49 UTC 2007


Author: lool
Date: Thu Jun 21 12:15:49 2007
New Revision: 854

URL: http://svn.debian.org/wsvn/pkg-evolution/?sc=1&rev=854
Log:
* SECURITY: New patch, 92_imap-negative-array-index, fixes potential
  negative array index usage in IMAP code (remote); FEDORA-2007-0464;
  GNOME #447414; closes: #429876.

Added:
    etch/evolution-data-server/debian/patches/92_imap-negative-array-index.patch
Modified:
    etch/evolution-data-server/debian/changelog

Modified: etch/evolution-data-server/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-evolution/etch/evolution-data-server/debian/changelog?rev=854&op=diff
==============================================================================
--- etch/evolution-data-server/debian/changelog (original)
+++ etch/evolution-data-server/debian/changelog Thu Jun 21 12:15:49 2007
@@ -1,3 +1,11 @@
+evolution-data-server (1.6.3-5etch1) stable-security; urgency=high
+
+  * SECURITY: New patch, 92_imap-negative-array-index, fixes potential
+    negative array index usage in IMAP code (remote); FEDORA-2007-0464;
+    GNOME #447414; closes: #429876.
+
+ -- Loic Minier <lool at dooz.org>  Thu, 21 Jun 2007 13:45:57 +0200
+
 evolution-data-server (1.6.3-5) unstable; urgency=high
 
   * New patch, 65_tz-updates, misc timezone updates, adapted from a patch

Added: etch/evolution-data-server/debian/patches/92_imap-negative-array-index.patch
URL: http://svn.debian.org/wsvn/pkg-evolution/etch/evolution-data-server/debian/patches/92_imap-negative-array-index.patch?rev=854&op=file
==============================================================================
--- etch/evolution-data-server/debian/patches/92_imap-negative-array-index.patch (added)
+++ etch/evolution-data-server/debian/patches/92_imap-negative-array-index.patch Thu Jun 21 12:15:49 2007
@@ -1,0 +1,29 @@
+SECURITY; GNOME #447414; FEDORA-2007-0464; Debian #429876; fixes potential
+negative array index usage in IMAP code (remote).
+
+2007-06-14  Philip Van Hoof  <pvanhoof at gnome.org>
+
+       * camel-imap-folder.c: Security bugfix. The sequence can be a negative
+       value while it is being used as the index of an array (#447414)
+
+diff -Nur evolution-data-server-1.6.3/camel/providers/imap/camel-imap-folder.c evolution-data-server-1.6.3.new/camel/providers/imap/camel-imap-folder.c
+--- evolution-data-server-1.6.3/camel/providers/imap/camel-imap-folder.c	2006-06-22 06:44:50.000000000 +0200
++++ evolution-data-server-1.6.3.new/camel/providers/imap/camel-imap-folder.c	2007-06-21 13:44:13.000000000 +0200
+@@ -647,7 +647,7 @@
+ 		uid = g_datalist_get_data (&data, "UID");
+ 		flags = GPOINTER_TO_UINT (g_datalist_get_data (&data, "FLAGS"));
+ 		
+-		if (!uid || !seq || seq > summary_len) {
++		if (!uid || !seq || seq > summary_len || seq < 0) {
+ 			g_datalist_clear (&data);
+ 			continue;
+ 		}
+@@ -2748,7 +2748,7 @@
+ 		
+ 		if (*response != '*' || *(response + 1) != ' ')
+ 			return NULL;
+-		seq = strtol (response + 2, &response, 10);
++		seq = strtoul (response + 2, &response, 10);
+ 		if (seq == 0)
+ 			return NULL;
+ 		if (g_ascii_strncasecmp (response, " FETCH (", 8) != 0)




More information about the pkg-evolution-commits mailing list