diff -u kdepimlibs-4.1.3/debian/changelog kdepimlibs-4.1.3/debian/changelog --- kdepimlibs-4.1.3/debian/changelog +++ kdepimlibs-4.1.3/debian/changelog @@ -1,3 +1,10 @@ +kdepimlibs (4:4.1.3-0ubuntu1~intrepid2) intrepid-backports; urgency=low + + * Backport fix for KDE bug 174241 with kubuntu_01_fix_knode_mem_leak.diff from the + 4.1 branch. (LP: #293081) + + -- Jonathan Thomas Fri, 07 Nov 2008 21:41:03 -0500 + kdepimlibs (4:4.1.3-0ubuntu1~intrepid1) intrepid-backports; urgency=low * New upstream release only in patch2: unchanged: --- kdepimlibs-4.1.3.orig/debian/patches/series +++ kdepimlibs-4.1.3/debian/patches/series @@ -0,0 +1 @@ +kubuntu_01_fix_knode_mem_leak.diff only in patch2: unchanged: --- kdepimlibs-4.1.3.orig/debian/patches/kubuntu_01_fix_knode_mem_leak.diff +++ kdepimlibs-4.1.3/debian/patches/kubuntu_01_fix_knode_mem_leak.diff @@ -0,0 +1,26 @@ +Index: kdepimlibs-4.1.3/kmime/kmime_content_p.h +=================================================================== +--- kdepimlibs-4.1.3.orig/kmime/kmime_content_p.h 2008-11-07 20:22:07.000000000 -0500 ++++ kdepimlibs-4.1.3/kmime/kmime_content_p.h 2008-11-07 20:23:08.000000000 -0500 +@@ -32,7 +32,7 @@ + defaultCS = KMime::cachedCharset( "ISO-8859-1" ); + } + +- ~ContentPrivate() ++ virtual ~ContentPrivate() + { + qDeleteAll( contents ); + contents.clear(); +Index: kdepimlibs-4.1.3/kmime/kmime_headers_p.h +=================================================================== +--- kdepimlibs-4.1.3.orig/kmime/kmime_headers_p.h 2008-11-07 20:26:42.000000000 -0500 ++++ kdepimlibs-4.1.3/kmime/kmime_headers_p.h 2008-11-07 20:28:03.000000000 -0500 +@@ -34,6 +34,8 @@ + public: + BasePrivate() : parent( 0 ) {} + ++ virtual ~BasePrivate() {} ++ + KMime::Content *parent; + QByteArray encCS; + };