Commit 74e43dd0 authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard

Fixed bug that caused item texts to be empty.

parent 288b8ee1
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment