fix bot failure
This commit is contained in:
parent
7fb3514d29
commit
3dcb7f2ae4
|
@ -309,6 +309,8 @@ struct byte_str_t : hb_ubytes_t
|
||||||
byte_str_t (const hb_ubytes_t &ub) /* conversion from hb_ubytes_t */
|
byte_str_t (const hb_ubytes_t &ub) /* conversion from hb_ubytes_t */
|
||||||
: hb_ubytes_t (ub) {}
|
: hb_ubytes_t (ub) {}
|
||||||
|
|
||||||
|
void init (void) { str(); }
|
||||||
|
|
||||||
/* sub-string */
|
/* sub-string */
|
||||||
byte_str_t sub_str (unsigned int offset, unsigned int len_) const
|
byte_str_t sub_str (unsigned int offset, unsigned int len_) const
|
||||||
{ return byte_str_t (hb_ubytes_t::sub_array (offset, len_)); }
|
{ return byte_str_t (hb_ubytes_t::sub_array (offset, len_)); }
|
||||||
|
@ -325,7 +327,7 @@ struct byte_str_ref_t
|
||||||
|
|
||||||
void init ()
|
void init ()
|
||||||
{
|
{
|
||||||
str = byte_str_t ();
|
str.init ();
|
||||||
offset = 0;
|
offset = 0;
|
||||||
error = false;
|
error = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue