File: 91_CVE-2007-1002.patch

package info (click to toggle)
evolution 2.6.3-6etch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 79,516 kB
  • ctags: 32,159
  • sloc: ansic: 295,007; xml: 10,755; sh: 9,373; makefile: 3,756; perl: 1,591
file content (21 lines) | stat: -rw-r--r-- 758 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff -Nur evolution-2.6.3/calendar/gui/e-cal-component-memo-preview.c evolution-2.6.3.new/calendar/gui/e-cal-component-memo-preview.c
--- evolution-2.6.3/calendar/gui/e-cal-component-memo-preview.c	2006-02-08 05:06:02.000000000 -0800
+++ evolution-2.6.3.new/calendar/gui/e-cal-component-memo-preview.c	2007-03-22 16:16:17.003756408 -0700
@@ -144,7 +144,7 @@
 			}
 		}
 		
-		gtk_html_stream_printf(stream, string->str);
+		gtk_html_stream_printf(stream, "%s", string->str);
 		
 		gtk_html_stream_printf(stream, "</H3>");
 
@@ -184,7 +184,7 @@
 					string = g_string_append_c (string, text.value[i]);
 			}
 
-			gtk_html_stream_printf (stream, string->str);
+			gtk_html_stream_printf (stream, "%s", string->str);
 			g_string_free (string, TRUE);
 		}