]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied patch by Johan van Zyl.
authorMattia Barbon <mbarbon@cpan.org>
Sun, 3 Jul 2005 22:31:36 +0000 (22:31 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Sun, 3 Jul 2005 22:31:36 +0000 (22:31 +0000)
1231711 ] Using motif clipboard causes application crash

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34808 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/clipbrd.cpp

index 4af95a45ad40e73fbfca02cd8345d6c7477e67cb..2b795bae13e791f8513a71faa2b60ab174d6c2a6 100644 (file)
@@ -208,7 +208,9 @@ void wxClipboard::Clear()
 
     for( wxDataIdToDataObjectList::compatibility_iterator node2 = m_idToObject.GetFirst();
          node2; node2 = node2->GetNext() )
 
     for( wxDataIdToDataObjectList::compatibility_iterator node2 = m_idToObject.GetFirst();
          node2; node2 = node2->GetNext() )
-        delete node->GetData();
+    {
+        delete node2->GetData();
+    }
     m_idToObject.Clear();
 }
 
     m_idToObject.Clear();
 }