aboutsummaryrefslogtreecommitdiff
path: root/lib/io/test
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-04 21:41:32 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-05 09:46:05 +0200
commit9a20f40bb5e7106f3fa59affbbb81f30337ada6b (patch)
treea6648c6477caa3ff162fa06c322c641a6258dd1e /lib/io/test
parent8e86f894afe775e39b8d02c95dd55f97a3465d27 (diff)
libio: istream_get_line: fix trailing CR sanitation
The istream_get_line function is supposed to remove the line break, inclduing CR+LF if used. The previous implementation simply checked the buffer when the LF was found, missing the case where the CR was alraedy added and the LF is at the beginning of the newly loaded data. This commit modifies the check to inspect the line itself when it was found, and remove the CR after the fact. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/io/test')
-rw-r--r--lib/io/test/get_line.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/io/test/get_line.c b/lib/io/test/get_line.c
index bb06b3e..0ce67ac 100644
--- a/lib/io/test/get_line.c
+++ b/lib/io/test/get_line.c
@@ -20,7 +20,7 @@ static void run_test_case(const char *raw, const line_t *lines, size_t count,
char *line;
int ret;
- fp = istream_memory_create("lines.txt", 512, raw, strlen(raw));
+ fp = istream_memory_create("lines.txt", 2, raw, strlen(raw));
TEST_NOT_NULL(fp);
line_num = 1;