Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 383090 Details for
Bug 520208
x11-misc/synergy - copy and paste fail with EFL applications
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch against 1.4.16
fix-for-efl.patch (text/plain), 871 bytes, created by
Tomáš Čech
on 2014-08-18 19:58:37 UTC
(
hide
)
Description:
patch against 1.4.16
Filename:
MIME Type:
Creator:
Tomáš Čech
Created:
2014-08-18 19:58:37 UTC
Size:
871 bytes
patch
obsolete
>Index: synergy-1.4.15-Source/src/lib/platform/CXWindowsClipboard.cpp >=================================================================== >--- synergy-1.4.15-Source.orig/src/lib/platform/CXWindowsClipboard.cpp >+++ synergy-1.4.15-Source/src/lib/platform/CXWindowsClipboard.cpp >@@ -935,9 +935,15 @@ CXWindowsClipboard::pushReplies() > for (CReplyMap::iterator index = m_replies.begin(); > index != m_replies.end(); ) { > assert(!index->second.empty()); >- if (!index->second.front()->m_replied) { >- pushReplies(index, index->second, index->second.begin()); >+ CReplyList::iterator listit = index->second.begin(); >+ while (listit != index->second.end()) { >+ if (!(*listit)->m_replied) >+ break; >+ ++listit; > } >+ if (listit != index->second.end() && !(*listit)->m_replied) { >+ pushReplies(index, index->second, listit); >+ } > else { > ++index; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 520208
: 383090 |
383094