[kerx] Fix bound-checking error introduced a couple commits past
This commit is contained in:
parent
339036dd97
commit
ca54eba484
|
@ -180,7 +180,7 @@ struct KerxSubTableFormat2
|
||||||
unsigned int offset = l + r;
|
unsigned int offset = l + r;
|
||||||
const FWORD *v = &StructAtOffset<FWORD> (&(this+array), offset);
|
const FWORD *v = &StructAtOffset<FWORD> (&(this+array), offset);
|
||||||
if (unlikely ((const char *) v < (const char *) &array ||
|
if (unlikely ((const char *) v < (const char *) &array ||
|
||||||
(const char *) v + v->static_size - (const char *) this <= header.length))
|
(const char *) v + v->static_size - (const char *) this > header.length))
|
||||||
return 0;
|
return 0;
|
||||||
return *v;
|
return *v;
|
||||||
}
|
}
|
||||||
|
@ -284,7 +284,7 @@ struct KerxSubTableFormat6
|
||||||
unsigned int offset = l + r;
|
unsigned int offset = l + r;
|
||||||
const FWORD32 *v = &StructAtOffset<FWORD32> (&(this+t.array), offset * sizeof (FWORD32));
|
const FWORD32 *v = &StructAtOffset<FWORD32> (&(this+t.array), offset * sizeof (FWORD32));
|
||||||
if (unlikely ((const char *) v < (const char *) &t.array ||
|
if (unlikely ((const char *) v < (const char *) &t.array ||
|
||||||
(const char *) v + v->static_size - (const char *) this <= header.length))
|
(const char *) v + v->static_size - (const char *) this > header.length))
|
||||||
return 0;
|
return 0;
|
||||||
return *v;
|
return *v;
|
||||||
}
|
}
|
||||||
|
@ -296,7 +296,7 @@ struct KerxSubTableFormat6
|
||||||
unsigned int offset = l + r;
|
unsigned int offset = l + r;
|
||||||
const FWORD *v = &StructAtOffset<FWORD> (&(this+t.array), offset * sizeof (FWORD));
|
const FWORD *v = &StructAtOffset<FWORD> (&(this+t.array), offset * sizeof (FWORD));
|
||||||
if (unlikely ((const char *) v < (const char *) &t.array ||
|
if (unlikely ((const char *) v < (const char *) &t.array ||
|
||||||
(const char *) v + v->static_size - (const char *) this <= header.length))
|
(const char *) v + v->static_size - (const char *) this > header.length))
|
||||||
return 0;
|
return 0;
|
||||||
return *v;
|
return *v;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue