[svg] Minor
This commit is contained in:
parent
1366bb9760
commit
31cc1f74b7
|
@ -50,10 +50,11 @@ struct SVGDocumentIndexEntry
|
||||||
svgDocLength);
|
svgDocLength);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool sanitize (hb_sanitize_context_t *c) const
|
inline bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
||||||
{
|
{
|
||||||
TRACE_SANITIZE (this);
|
TRACE_SANITIZE (this);
|
||||||
return_trace (c->check_struct (this));
|
return_trace (c->check_struct (this) &&
|
||||||
|
svgDoc.sanitize (c, base, svgDocLength));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
Loading…
Reference in New Issue