Fixed bug that caused item texts to be empty.
This commit is contained in:
parent
288b8ee18c
commit
74e43dd023
|
@ -596,7 +596,7 @@ static BOOL notify_dispinfoT(LISTVIEW_INFO *infoPtr, INT notificationCode, LPNML
|
|||
else
|
||||
{
|
||||
cchTempBufMax = pdi->item.cchTextMax;
|
||||
pdi->item.pszText = 0; /* make sure we don't process garbage */
|
||||
*pdi->item.pszText = 0; /* make sure we don't process garbage */
|
||||
}
|
||||
|
||||
pszTempBuf = HeapAlloc(GetProcessHeap(), 0,
|
||||
|
|
Loading…
Reference in New Issue