diff -Nru evolution-indicator-0.2.20/debian/changelog evolution-indicator-0.2.20/debian/changelog --- evolution-indicator-0.2.20/debian/changelog 2014-02-03 16:28:04.000000000 +0000 +++ evolution-indicator-0.2.20/debian/changelog 2014-02-17 14:49:44.000000000 +0000 @@ -1,3 +1,10 @@ +evolution-indicator (0.2.20-0ubuntu15) trusty; urgency=medium + + * debian/patches/evolution-indicator-eds3.6_v2.patch: + - don't try to free a static string (lp: #1272469) + + -- Sebastien Bacher Mon, 17 Feb 2014 15:49:42 +0100 + evolution-indicator (0.2.20-0ubuntu13) trusty; urgency=medium * debian/patches/evolution-indicator-eds3.6_v2.patch: diff -Nru evolution-indicator-0.2.20/debian/patches/evolution-indicator-eds3.6_v2.patch evolution-indicator-0.2.20/debian/patches/evolution-indicator-eds3.6_v2.patch --- evolution-indicator-0.2.20/debian/patches/evolution-indicator-eds3.6_v2.patch 2014-02-03 16:06:27.000000000 +0000 +++ evolution-indicator-0.2.20/debian/patches/evolution-indicator-eds3.6_v2.patch 2014-02-17 12:47:38.000000000 +0000 @@ -8,8 +8,8 @@ Index: ubuntu/configure.ac =================================================================== ---- ubuntu.orig/configure.ac 2014-02-03 16:05:51.352915374 +0000 -+++ ubuntu/configure.ac 2014-02-03 16:05:51.344915374 +0000 +--- ubuntu.orig/configure.ac 2014-02-17 13:46:27.693945217 +0100 ++++ ubuntu/configure.ac 2014-02-17 13:46:55.000000000 +0100 @@ -70,7 +70,6 @@ AC_SUBST(GCC_FLAGS) @@ -28,8 +28,8 @@ AC_SUBST(DEPS_LIBS) Index: ubuntu/src/evolution-indicator.c =================================================================== ---- ubuntu.orig/src/evolution-indicator.c 2014-02-03 16:05:51.352915374 +0000 -+++ ubuntu/src/evolution-indicator.c 2014-02-03 16:06:12.076916064 +0000 +--- ubuntu.orig/src/evolution-indicator.c 2014-02-17 13:46:27.693945217 +0100 ++++ ubuntu/src/evolution-indicator.c 2014-02-17 13:47:15.581946811 +0100 @@ -28,6 +28,7 @@ #include @@ -460,7 +460,7 @@ + data.port = e_source_authentication_get_port ((ESourceAuthentication *)extension); + + if(g_str_has_prefix (data.protocol, "pop")) { -+ data.name = g_dgettext (EVO_I18N_DOMAIN, "Inbox"); ++ data.name = g_strdup (g_dgettext (EVO_I18N_DOMAIN, "Inbox")); + data.url = g_strdup_printf("%s", "pop:"); + } else { + data.name = e_source_dup_display_name(source);