From 690a6d4b72fc0ee71737a526be46953bc2e9ebd0 Mon Sep 17 00:00:00 2001 From: Ulrich Czekalla Date: Sat, 23 Oct 1999 16:54:48 +0000 Subject: [PATCH] Properly copy text into user supplied buffer. --- dlls/comctl32/listview.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 7fc7a11a837..7c1e5114f4d 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -3330,11 +3330,11 @@ static LRESULT LISTVIEW_GetItemA(HWND hwnd, LPLVITEMA lpLVItem) { Str_SetPtrA(&lpItem->pszText, dispInfo.item.pszText); } - lpLVItem->pszText = dispInfo.item.pszText; + strncpy(lpLVItem->pszText, dispInfo.item.pszText, lpLVItem->cchTextMax); } else if (lpLVItem->mask & LVIF_TEXT) { - lpLVItem->pszText = lpItem->pszText; + strncpy(lpLVItem->pszText, lpItem->pszText, lpLVItem->cchTextMax); } if (dispInfo.item.mask & LVIF_STATE) @@ -3425,11 +3425,11 @@ static LRESULT LISTVIEW_GetItemA(HWND hwnd, LPLVITEMA lpLVItem) if (lpSubItem) Str_SetPtrA(&lpSubItem->pszText, dispInfo.item.pszText); } - lpLVItem->pszText = dispInfo.item.pszText; + strncpy(lpLVItem->pszText, dispInfo.item.pszText, lpLVItem->cchTextMax); } else if (lpLVItem->mask & LVIF_TEXT) { - lpLVItem->pszText = lpSubItem->pszText; + strncpy(lpLVItem->pszText, lpSubItem->pszText, lpLVItem->cchTextMax); } } }