mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-19 03:34:03 +00:00
[iter] Fix hb_copy() return value
This commit is contained in:
parent
40d71211a8
commit
65e8bd56ad
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ hb_copy (hb_iter_t<D> &id, hb_iter_t<S> &is)
|
|||
{
|
||||
for (; id && is; ++id, ++is)
|
||||
*id = *is;
|
||||
return !id;
|
||||
return !is;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Add table
Reference in a new issue