Fixing sig11 in xf86I2CGetScreenBuses().

Dereferencing a pointer once too often caused a
sig11 in xf86I2CGetScreenBuses().
This commit is contained in:
Egbert Eich 2007-09-04 15:07:17 +02:00 committed by Egbert Eich
parent 9adea80703
commit 7c5de093d4

View File

@ -883,7 +883,7 @@ xf86I2CGetScreenBuses(int scrnIndex, I2CBusPtr **pppI2CBus)
continue;
*pppI2CBus = xnfrealloc(*pppI2CBus, n * sizeof(I2CBusPtr));
*pppI2CBus[n - 1] = pI2CBus;
pppI2CBus[n - 1] = pI2CBus;
}
return n;