1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-21 00:25:37 +00:00

[gemini] Off by one? Refs #264

This commit is contained in:
Witold Filipczyk 2023-09-12 09:58:59 +02:00
parent 47c59125f4
commit e5ad52fc57

View File

@ -323,6 +323,6 @@ gemini_got_header(struct socket *socket, struct read_buffer *rb)
}
mem_free_set(&conn->cached->head, head_string.source);
kill_buffer_data(rb, a);
kill_buffer_data(rb, a + 1);
read_gemini_data(socket, rb);
}