On October 7, 2002 07:35 pm, Alexandre Julliard wrote:
Yes I'm seeing this too. The following patch fixes it for me, but I guess that line was added for a reason...
Braindamage. Thanks for spotting it. Should be:
Index: dlls/comctl32/listview.c =================================================================== RCS file: /opt/cvs-commit/wine/dlls/comctl32/listview.c,v retrieving revision 1.186 diff -u -r1.186 listview.c --- dlls/comctl32/listview.c 7 Oct 2002 22:43:42 -0000 1.186 +++ dlls/comctl32/listview.c 7 Oct 2002 23:34:11 -0000 @@ -596,7 +596,6 @@ 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,
I'll include the fix in the next set of patches.