From 14263426cfd3f672b22f7ddcc610910642192329 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 7 Apr 2009 11:11:41 +0000 Subject: [PATCH] added assert checking the column index validity (see #10687) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60056 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/listctrl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/msw/listctrl.cpp b/src/msw/listctrl.cpp index f0f2b63311..b5bbc4a4be 100644 --- a/src/msw/listctrl.cpp +++ b/src/msw/listctrl.cpp @@ -3200,6 +3200,9 @@ static void wxConvertToMSWListItem(const wxListCtrl *ctrl, const wxListItem& info, LV_ITEM& lvItem) { + wxASSERT_MSG( 0 <= info.m_col && info.m_col < ctrl->GetColumnCount(), + "wxListCtrl column index out of bounds" ); + lvItem.iItem = (int) info.m_itemId; lvItem.iImage = info.m_image; -- 2.47.2