Fixing sig11 in xf86I2CGetScreenBuses().
Dereferencing a pointer once too often caused a sig11 in xf86I2CGetScreenBuses().
This commit is contained in:
parent
9adea80703
commit
7c5de093d4
|
@ -883,7 +883,7 @@ xf86I2CGetScreenBuses(int scrnIndex, I2CBusPtr **pppI2CBus)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
*pppI2CBus = xnfrealloc(*pppI2CBus, n * sizeof(I2CBusPtr));
|
*pppI2CBus = xnfrealloc(*pppI2CBus, n * sizeof(I2CBusPtr));
|
||||||
*pppI2CBus[n - 1] = pI2CBus;
|
pppI2CBus[n - 1] = pI2CBus;
|
||||||
}
|
}
|
||||||
|
|
||||||
return n;
|
return n;
|
||||||
|
|
Loading…
Reference in New Issue