Unbreak HB_OPTIONS
Fixes https://github.com/harfbuzz/harfbuzz/issues/1154
This commit is contained in:
parent
e46c51f1e9
commit
24f1d96224
|
@ -67,7 +67,10 @@ hb_options (void)
|
||||||
u.i = _hb_options.get_relaxed ();
|
u.i = _hb_options.get_relaxed ();
|
||||||
|
|
||||||
if (unlikely (!u.i))
|
if (unlikely (!u.i))
|
||||||
|
{
|
||||||
_hb_options_init ();
|
_hb_options_init ();
|
||||||
|
u.i = _hb_options.get_relaxed ();
|
||||||
|
}
|
||||||
|
|
||||||
return u.opts;
|
return u.opts;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue