mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-27 10:50:35 +00:00
fix for comment spanning the buffer boundary
This commit is contained in:
parent
282477542a
commit
89e4ae2743
@ -344,6 +344,11 @@ input_callback(IDL_input_reason reason, union IDL_input_data *cb_data,
|
||||
data->point - check_point, check_point);
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
data->point = data->buf + data->len;
|
||||
goto fill_start;
|
||||
}
|
||||
|
||||
assert(!data->f_raw && !data->f_include);
|
||||
/*
|
||||
* Now that we've advanced data->point to skip the comment,
|
||||
|
@ -344,6 +344,11 @@ input_callback(IDL_input_reason reason, union IDL_input_data *cb_data,
|
||||
data->point - check_point, check_point);
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
data->point = data->buf + data->len;
|
||||
goto fill_start;
|
||||
}
|
||||
|
||||
assert(!data->f_raw && !data->f_include);
|
||||
/*
|
||||
* Now that we've advanced data->point to skip the comment,
|
||||
|
Loading…
Reference in New Issue
Block a user