Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 520208 | Differences between
and this patch

Collapse All | Expand All

(-)synergy-1.4.15-Source/src/lib/platform/CXWindowsClipboard.cpp (-2 / +8 lines)
Lines 935-943 CXWindowsClipboard::pushReplies() Link Here
935
	for (CReplyMap::iterator index = m_replies.begin();
935
	for (CReplyMap::iterator index = m_replies.begin();
936
								index != m_replies.end(); ) {
936
								index != m_replies.end(); ) {
937
		assert(!index->second.empty());
937
		assert(!index->second.empty());
938
		if (!index->second.front()->m_replied) {
938
		CReplyList::iterator listit = index->second.begin();
939
			pushReplies(index, index->second, index->second.begin());
939
		while (listit != index->second.end()) {
940
			if (!(*listit)->m_replied)
941
				break;
942
			++listit;
940
		}
943
		}
944
		if (listit != index->second.end() && !(*listit)->m_replied) {
945
			pushReplies(index, index->second, listit);
946
		}		
941
		else {
947
		else {
942
			++index;
948
			++index;
943
		}
949
		}

Return to bug 520208