1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[iframe] off by one

This commit is contained in:
Witold Filipczyk 2021-07-30 20:43:46 +02:00
parent a3ebbc9f02
commit 7a5adbc328

View File

@ -505,7 +505,7 @@ html_iframe_do(char *a, char *object_src,
if (height > 0) {
int y = html_context->part->cy;
char *url2;
ln_break(html_context, height);
ln_break(html_context, height + 1);
url2 = join_urls(html_context->base_href, url);