Fix a whitespace inconsistency
Null() and Crap() are only places that there's no space before '('...
This commit is contained in:
parent
e36cd1dfd3
commit
353f4d2efc
|
@ -341,7 +341,7 @@ struct NE_TYPEINFO
|
|||
{
|
||||
const NE_TYPEINFO& next = OT::StructAfter<NE_TYPEINFO> (*this);
|
||||
if (type_id == 0)
|
||||
return Null (NE_TYPEINFO);
|
||||
return Null(NE_TYPEINFO);
|
||||
return next;
|
||||
}
|
||||
|
||||
|
@ -349,7 +349,7 @@ struct NE_TYPEINFO
|
|||
{
|
||||
if (idx < count)
|
||||
return resources[idx].get_font (base, shift);
|
||||
return Null (LE_FONTINFO16);
|
||||
return Null(LE_FONTINFO16);
|
||||
}
|
||||
|
||||
inline unsigned int get_count () const
|
||||
|
@ -398,7 +398,7 @@ struct NE_RESOURCE_TABLE
|
|||
return_trace (false);
|
||||
|
||||
const NE_TYPEINFO* n = &chain;
|
||||
while (n != &Null (NE_TYPEINFO) && c->check_struct (n) && n->get_type_id () != 0)
|
||||
while (n != &Null(NE_TYPEINFO) && c->check_struct (n) && n->get_type_id () != 0)
|
||||
{
|
||||
if (n->get_type_id () == NE_TYPEINFO::FONT)
|
||||
return_trace (n->sanitize (c, base, alignmentShiftCount));
|
||||
|
@ -415,13 +415,13 @@ struct NE_RESOURCE_TABLE
|
|||
inline const NE_TYPEINFO& get_fonts_entry () const
|
||||
{
|
||||
const NE_TYPEINFO* n = &chain;
|
||||
while (n != &Null (NE_TYPEINFO) && n->get_type_id () != 0)
|
||||
while (n != &Null(NE_TYPEINFO) && n->get_type_id () != 0)
|
||||
{
|
||||
if (n->get_type_id () == NE_TYPEINFO::FONT)
|
||||
return *n;
|
||||
n = &n->next();
|
||||
}
|
||||
return Null (NE_TYPEINFO);
|
||||
return Null(NE_TYPEINFO);
|
||||
}
|
||||
|
||||
protected:
|
||||
|
@ -444,7 +444,7 @@ struct LE_IMAGE_OS2_HEADER
|
|||
inline const NE_RESOURCE_TABLE& get_resource_table () const
|
||||
{
|
||||
if (magic != 0x454E) // Only NE containers are support for now, NE == 0x454E
|
||||
return Null (NE_RESOURCE_TABLE);
|
||||
return Null(NE_RESOURCE_TABLE);
|
||||
return this+rsrctab;
|
||||
}
|
||||
|
||||
|
|
|
@ -645,7 +645,7 @@ struct hb_vector_t
|
|||
inline const Type& operator [] (unsigned int i) const
|
||||
{
|
||||
if (unlikely (i >= len))
|
||||
return Null (Type);
|
||||
return Null(Type);
|
||||
return arrayZ[i];
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ main (int argc, char **argv)
|
|||
Sanitizer<OpenTypeFontFile> sanitizer;
|
||||
hb_blob_t *font_blob = sanitizer.sanitize (blob);
|
||||
const OpenTypeFontFile* sanitized = font_blob->as<OpenTypeFontFile> ();
|
||||
if (sanitized == &Null (OpenTypeFontFile))
|
||||
if (sanitized == &Null(OpenTypeFontFile))
|
||||
{
|
||||
printf ("Sanitization of the file wasn't successful. Exit");
|
||||
return 1;
|
||||
|
|
Loading…
Reference in New Issue