# HG changeset patch # User Sebastian Brannstrom # Date 1288620771 0 # Node ID b4560769586d3f2658657c6e352a4dfaa828f297 # Parent 255972d41940e7a93635536584992b28a2c03e15 Fix to prevent double delete of icon arrays in ListView diff -r 255972d41940 -r b4560769586d application/src/PodcastListView.cpp --- a/application/src/PodcastListView.cpp Mon Nov 01 14:06:24 2010 +0000 +++ b/application/src/PodcastListView.cpp Mon Nov 01 14:12:51 2010 +0000 @@ -214,7 +214,9 @@ CPodcastListContainer::~CPodcastListContainer() { - delete iListbox; + iListboxLandscape->ItemDrawer()->ColumnData()->SetIconArray(NULL); + delete iListboxPortrait; + delete iListboxLandscape; delete iBgContext; }