r=jkobal, a=blizzard
Stupid stupid code I wrote caused trap
This commit is contained in:
mkaply%us.ibm.com 2000-11-30 22:07:02 +00:00
Родитель 453cde8bd5
Коммит 33dd6228c8
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -426,13 +426,15 @@ BOOL ExtTextOut(HPS aPS, int X, int Y, UINT fuOptions, const RECTL* lprc,
while( lLength)
{
ULONG thislen = min( lLength, 512);
GpiCharStringPos( aPS, nsnull,
pDx == nsnull ? 0 : CHS_VECTOR,
GpiCharStringPos( aPS, 0,
!pDx ? 0 : CHS_VECTOR,
thislen, (PCH)aStringTemp,
pDx == nsnull ? nsnull : (PLONG) pDx);
!pDx ? 0 : (PLONG) pDx);
lLength -= thislen;
aStringTemp += thislen;
pDx += thislen;
if (pDx) {
pDx += thislen;
} /* endif */
}
return TRUE;