Bug 70971 - Signed/unsigned compiler warnings on windows
Patch from Emil Eklund.
This commit is contained in:
parent
3d436d325e
commit
176fd17d02
|
@ -146,9 +146,9 @@ _hb_buffer_serialize_glyphs_json (hb_buffer_t *buffer,
|
||||||
|
|
||||||
*p++ = '}';
|
*p++ = '}';
|
||||||
|
|
||||||
if (buf_size > (p - b))
|
unsigned int l = p - b;
|
||||||
|
if (buf_size > l)
|
||||||
{
|
{
|
||||||
unsigned int l = p - b;
|
|
||||||
memcpy (buf, b, l);
|
memcpy (buf, b, l);
|
||||||
buf += l;
|
buf += l;
|
||||||
buf_size -= l;
|
buf_size -= l;
|
||||||
|
@ -208,9 +208,9 @@ _hb_buffer_serialize_glyphs_text (hb_buffer_t *buffer,
|
||||||
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",%d", pos[i].y_advance));
|
p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",%d", pos[i].y_advance));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (buf_size > (p - b))
|
unsigned int l = p - b;
|
||||||
|
if (buf_size > l)
|
||||||
{
|
{
|
||||||
unsigned int l = p - b;
|
|
||||||
memcpy (buf, b, l);
|
memcpy (buf, b, l);
|
||||||
buf += l;
|
buf += l;
|
||||||
buf_size -= l;
|
buf_size -= l;
|
||||||
|
|
|
@ -181,7 +181,7 @@ hb_ot_map_builder_t::compile (hb_ot_map_t &m)
|
||||||
continue; /* Feature disabled, or not enough bits. */
|
continue; /* Feature disabled, or not enough bits. */
|
||||||
|
|
||||||
|
|
||||||
bool found = false;
|
hb_bool_t found = false;
|
||||||
unsigned int feature_index[2];
|
unsigned int feature_index[2];
|
||||||
for (unsigned int table_index = 0; table_index < 2; table_index++)
|
for (unsigned int table_index = 0; table_index < 2; table_index++)
|
||||||
found |= hb_ot_layout_language_find_feature (face,
|
found |= hb_ot_layout_language_find_feature (face,
|
||||||
|
|
Loading…
Reference in New Issue