Fix hb_bytes_t.cmp() for realz this time
This commit is contained in:
parent
929f07dbfc
commit
534e1d7694
|
@ -530,10 +530,12 @@ struct hb_bytes_t
|
||||||
|
|
||||||
inline int cmp (const hb_bytes_t &a) const
|
inline int cmp (const hb_bytes_t &a) const
|
||||||
{
|
{
|
||||||
if (!len) return 0; /* glibc's memcmp() args are declared nonnull. Meh. */
|
unsigned int l = MIN(a.len, len);
|
||||||
|
if (l) /* glibc's memcmp() args are declared nonnull. Meh. */
|
||||||
int r = memcmp (a.arrayZ, arrayZ, len);
|
{
|
||||||
|
int r = memcmp (a.arrayZ, arrayZ, l);
|
||||||
if (r) return r;
|
if (r) return r;
|
||||||
|
}
|
||||||
|
|
||||||
return a.len < len ? -1 : a.len > len ? +1 : 0;
|
return a.len < len ? -1 : a.len > len ? +1 : 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue