diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-06 12:16:27 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-06 12:16:27 -0500 |
commit | ecd088049d4aa2e8262f4cc1e0ac45e135964229 (patch) | |
tree | 49ed22e9e7852fd3f26854aecf41c96169d59629 /redhat/tdepim/kdepim-3.5.13-fix_kio_imap4_infinite_loop.patch | |
parent | 855439d3f99b0c152c33ae76a06cce9853f9b8dd (diff) | |
parent | 01a7863524342e1aec31679e55d08830cc571066 (diff) | |
download | tde-packaging-ecd088049d4aa2e8262f4cc1e0ac45e135964229.tar.gz tde-packaging-ecd088049d4aa2e8262f4cc1e0ac45e135964229.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'redhat/tdepim/kdepim-3.5.13-fix_kio_imap4_infinite_loop.patch')
-rw-r--r-- | redhat/tdepim/kdepim-3.5.13-fix_kio_imap4_infinite_loop.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/redhat/tdepim/kdepim-3.5.13-fix_kio_imap4_infinite_loop.patch b/redhat/tdepim/kdepim-3.5.13-fix_kio_imap4_infinite_loop.patch deleted file mode 100644 index 90e0a1269..000000000 --- a/redhat/tdepim/kdepim-3.5.13-fix_kio_imap4_infinite_loop.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- kdepim/kioslaves/imap4/imapparser.cc.ORI 2012-05-27 23:40:50.101207608 +0200 -+++ kdepim/kioslaves/imap4/imapparser.cc 2012-05-27 23:43:23.264547024 +0200 -@@ -277,11 +277,11 @@ - } - cmd = sendCommand (new imapCommand ("AUTHENTICATE", firstCommand.latin1())); - -- while ( true ) -+ int pl = 0; -+ while ( pl != -1 && !cmd->isComplete () ) - { - //read the next line -- while (parseLoop() == 0) ; -- if ( cmd->isComplete() ) break; -+ while ((pl = parseLoop()) == 0) ; - - if (!continuation.isEmpty()) - { |