radeon: fix realloc of packets.

This should use ndw not cdw, using cdw leads to realloc alignment going wrong
main
Dave Airlie 2009-07-03 21:13:22 +10:00
parent fbac5891b9
commit af90222c45
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ static int cs_gem_begin(struct radeon_cs *cs,
uint32_t tmp, *ptr;
int num = (ndw > 0x3FF) ? ndw : 0x3FF;
tmp = (cs->cdw + 1 + num) & (~num);
tmp = (cs->ndw + 1 + num) & (~num);
ptr = (uint32_t*)realloc(cs->packets, 4 * tmp);
if (ptr == NULL) {
return -ENOMEM;