Typo in ALLLOCATE_LOCAL() arguments, causing mis-computation of the buffer.
Bugzilla #6642.
This commit is contained in:
parent
1e8a594957
commit
b9a9cf6185
|
@ -1,3 +1,9 @@
|
||||||
|
2006-05-02 Matthieu Herrb <matthieu.herrb@laas.fr>
|
||||||
|
|
||||||
|
* render/mitri.c:
|
||||||
|
Typo in ALLLOCATE_LOCAL() arguments, causing mis-computation
|
||||||
|
of the buffer.Bugzilla #6642.
|
||||||
|
|
||||||
2006-05-01 Alan Coopersmith <alan.coopersmith@sun.com>
|
2006-05-01 Alan Coopersmith <alan.coopersmith@sun.com>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -145,7 +145,7 @@ miTriStrip (CARD8 op,
|
||||||
if (npoint < 3)
|
if (npoint < 3)
|
||||||
return;
|
return;
|
||||||
ntri = npoint - 2;
|
ntri = npoint - 2;
|
||||||
tris = ALLOCATE_LOCAL (ntri & sizeof (xTriangle));
|
tris = ALLOCATE_LOCAL (ntri * sizeof (xTriangle));
|
||||||
if (!tris)
|
if (!tris)
|
||||||
return;
|
return;
|
||||||
for (tri = tris; npoint >= 3; npoint--, points++, tri++)
|
for (tri = tris; npoint >= 3; npoint--, points++, tri++)
|
||||||
|
@ -177,7 +177,7 @@ miTriFan (CARD8 op,
|
||||||
if (npoint < 3)
|
if (npoint < 3)
|
||||||
return;
|
return;
|
||||||
ntri = npoint - 2;
|
ntri = npoint - 2;
|
||||||
tris = ALLOCATE_LOCAL (ntri & sizeof (xTriangle));
|
tris = ALLOCATE_LOCAL (ntri * sizeof (xTriangle));
|
||||||
if (!tris)
|
if (!tris)
|
||||||
return;
|
return;
|
||||||
first = points++;
|
first = points++;
|
||||||
|
|
Loading…
Reference in New Issue