rpms/kdepim/devel kdepim-4.3.2-ldapCompletionCrash.patch, NONE, 1.1 kdepim.spec, 1.235, 1.236

Lukas Tinkl ltinkl at fedoraproject.org
Tue Sep 15 14:33:58 UTC 2009


Author: ltinkl

Update of /cvs/extras/rpms/kdepim/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10893/devel

Modified Files:
	kdepim.spec 
Added Files:
	kdepim-4.3.2-ldapCompletionCrash.patch 
Log Message:
fix crash when autocompleting LDAP address (kdebug:206024)


kdepim-4.3.2-ldapCompletionCrash.patch:
 addresseelineedit.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE kdepim-4.3.2-ldapCompletionCrash.patch ---
Index: branches/KDE/4.3/kdepim/libkdepim/addresseelineedit.cpp
===================================================================
--- branches/KDE/4.3/kdepim/libkdepim/addresseelineedit.cpp	(revision 1019118)
+++ branches/KDE/4.3/kdepim/libkdepim/addresseelineedit.cpp	(revision 1019119)
@@ -800,7 +800,7 @@
 
 void AddresseeLineEdit::slotLDAPSearchData( const KPIM::LdapResultList &adrs )
 {
-  if ( s_LDAPLineEdit != this ) {
+  if ( adrs.isEmpty() || s_LDAPLineEdit != this ) {
     return;
   }
 


Index: kdepim.spec
===================================================================
RCS file: /cvs/extras/rpms/kdepim/devel/kdepim.spec,v
retrieving revision 1.235
retrieving revision 1.236
diff -u -p -r1.235 -r1.236
--- kdepim.spec	14 Sep 2009 13:45:24 -0000	1.235
+++ kdepim.spec	15 Sep 2009 14:33:58 -0000	1.236
@@ -6,7 +6,7 @@ Name:    kdepim
 Summary: PIM (Personal Information Manager) applications
 Epoch:   6
 Version: 4.3.1
-Release: 3%{?dist}
+Release: 4%{?dist}
 
 License: GPLv2
 Group:   Applications/Productivity
@@ -19,6 +19,8 @@ Patch1:  kdepim-4.3.1-kmail-saveAttachme
 # http://websvn.kde.org/?view=rev&revision=1022963
 # http://websvn.kde.org/?view=rev&revision=1022964
 Patch100: kdepim-4.3.2-imapMove.patch
+# http://websvn.kde.org/?view=rev&revision=1019119
+Patch101: kdepim-4.3.2-ldapCompletionCrash.patch
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
@@ -99,6 +101,7 @@ Requires: %{name} = %{?epoch:%{epoch}:}%
 %patch0 -p1 -b .libqgpgme-link-fix
 %patch1 -p0 -b .kmail-saveAttachments
 %patch100 -p4 -b .imapMove
+%patch101 -p4 -b .ldapCompletionCrash
 
 
 %build
@@ -217,6 +220,9 @@ rm -rf %{buildroot}
 
 
 %changelog
+* Tue Sep 15 2009 Lukáš Tinkl <ltinkl at redhat.com> - 4.3.1-4
+- fix crash when autocompleting LDAP address (kdebug:206024)
+
 * Mon Sep 14 2009 Lukáš Tinkl <ltinkl at redhat.com> - 4.3.1-3
 - fix KMail issues losing messages when renaming folder with disconnected IMAP
 




More information about the fedora-extras-commits mailing list