Fixed bug that caused item texts to be empty.

diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c
index 4b2adb4..0b82c70 100644
--- a/dlls/comctl32/listview.c
+++ b/dlls/comctl32/listview.c
@@ -596,7 +596,7 @@
 	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,