fix for comment spanning the buffer boundary

This commit is contained in:
jband%netscape.com 1999-04-13 00:50:39 +00:00
Родитель 282477542a
Коммит 89e4ae2743
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -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,