Skip to content

Commit

Permalink
Fix another sanitize bug
Browse files Browse the repository at this point in the history
Also discovered by "libFuzzer".
  • Loading branch information
behdad committed Oct 9, 2015
1 parent 34379b4 commit ee9b0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hb-open-type-private.hh
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ struct ArrayOf
inline bool sanitize_shallow (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) && c->check_array (this, Type::static_size, len));
return_trace (c->check_struct (this) && c->check_array (array, Type::static_size, len));
}

public:
Expand Down

0 comments on commit ee9b0b6

Please sign in to comment.