View | Details | Raw Unified | Return to bug 7956
Collapse All | Expand All

(-)calendar/gui/e-cal-component-preview.c.old (-1 / +1 lines)
Lines 285-291 write_html (GtkHTMLStream *stream, ECal Link Here
285
					str = g_string_append_c (str, text.value[i]);
285
					str = g_string_append_c (str, text.value[i]);
286
			}
286
			}
287
287
288
			gtk_html_stream_printf (stream, str->str);
288
			gtk_html_stream_printf (stream, "%s", str->str);
289
			g_string_free (str, TRUE);
289
			g_string_free (str, TRUE);
290
		}
290
		}
291
291
(-)addressbook/gui/widgets/eab-contact-display.c.old (-3 / +3 lines)
Lines 338-344 render_contact (GtkHTMLStream *html_stre Link Here
338
	accum_attribute (accum, contact, _("Yahoo"), E_CONTACT_IM_YAHOO_HOME_1, YAHOO_ICON, 0);
338
	accum_attribute (accum, contact, _("Yahoo"), E_CONTACT_IM_YAHOO_HOME_1, YAHOO_ICON, 0);
339
339
340
	if (accum->len > 0)
340
	if (accum->len > 0)
341
		gtk_html_stream_printf (html_stream, accum->str);
341
		gtk_html_stream_printf (html_stream, "%s", accum->str);
342
342
343
	end_block (html_stream);
343
	end_block (html_stream);
344
344
Lines 353-359 render_contact (GtkHTMLStream *html_stre Link Here
353
353
354
	if (accum->len > 0) {
354
	if (accum->len > 0) {
355
		start_block (html_stream, _("work"));
355
		start_block (html_stream, _("work"));
356
		gtk_html_stream_printf (html_stream, accum->str);
356
		gtk_html_stream_printf (html_stream, "%s", accum->str);
357
		end_block (html_stream);
357
		end_block (html_stream);
358
	}
358
	}
359
359
Lines 368-374 render_contact (GtkHTMLStream *html_stre Link Here
368
368
369
	if (accum->len > 0) {
369
	if (accum->len > 0) {
370
		start_block (html_stream, _("personal"));
370
		start_block (html_stream, _("personal"));
371
		gtk_html_stream_printf (html_stream, accum->str);
371
		gtk_html_stream_printf (html_stream, "%s", accum->str);
372
		end_block (html_stream);
372
		end_block (html_stream);
373
	}
373
	}
374
374
(-)calendar/gui/e-calendar-view.c.old (-1 / +1 lines)
Lines 1074-1080 on_save_as (GtkWidget *widget, gpointer Link Here
1074
		return;
1074
		return;
1075
	}
1075
	}
1076
	
1076
	
1077
	fprintf (file, ical_string);
1077
	fprintf (file, "%s", ical_string);
1078
	g_free (ical_string);
1078
	g_free (ical_string);
1079
	fclose (file);
1079
	fclose (file);
1080
1080
(-)calendar/gui/e-calendar-table.c.old (-1 / +1 lines)
Lines 1212-1218 e_calendar_table_on_save_as (GtkWidget * Link Here
1212
		return;
1212
		return;
1213
	}
1213
	}
1214
	
1214
	
1215
	fprintf (file, ical_string);
1215
	fprintf (file, "%s", ical_string);
1216
	g_free (ical_string);
1216
	g_free (ical_string);
1217
	fclose (file);
1217
	fclose (file);
1218
}
1218
}

Return to bug 7956