summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2023-12-18 20:07:55 +0000
committerJohn-Mark Bell <jmb@netsurf-browser.org>2023-12-18 20:07:55 +0000
commit51deb6711a845e8797f3818d4d453bb29ac1a951 (patch)
treee4bc00e2e20784c01fcad5858582fc2b5d511863 /test
parent26fef05c3f3761030c9f38018cd26ccccc6f6aa6 (diff)
downloadiconv-51deb6711a845e8797f3818d4d453bb29ac1a951.tar.gz
iconv-51deb6711a845e8797f3818d4d453bb29ac1a951.tar.bz2
Fix strncpy buffer lengths
Diffstat (limited to 'test')
-rw-r--r--test/GNU/table-from.c2
-rw-r--r--test/GNU/table-to.c2
-rw-r--r--test/iconv.c2
-rw-r--r--test/nullable.c2
-rw-r--r--test/translit.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/test/GNU/table-from.c b/test/GNU/table-from.c
index 56a0dab..92300d6 100644
--- a/test/GNU/table-from.c
+++ b/test/GNU/table-from.c
@@ -126,7 +126,7 @@ int main (int argc, char* argv[])
exit(1);
}
- strncpy(aliases, ucpath, sizeof(aliases));
+ strncpy(aliases, ucpath, sizeof(aliases) - 1);
alen = strlen(ucpath);
#ifndef __riscos__
if (aliases[alen - 1] != '/') {
diff --git a/test/GNU/table-to.c b/test/GNU/table-to.c
index 62c30a8..3246428 100644
--- a/test/GNU/table-to.c
+++ b/test/GNU/table-to.c
@@ -59,7 +59,7 @@ int main (int argc, char* argv[])
exit(1);
}
- strncpy(aliases, ucpath, sizeof(aliases));
+ strncpy(aliases, ucpath, sizeof(aliases) - 1);
alen = strlen(ucpath);
#ifndef __riscos__
if (aliases[alen - 1] != '/') {
diff --git a/test/iconv.c b/test/iconv.c
index cd0bfa3..f257782 100644
--- a/test/iconv.c
+++ b/test/iconv.c
@@ -28,7 +28,7 @@ int main(int argc, char **argv)
assert(ucpath != NULL);
- strncpy(aliases, ucpath, sizeof(aliases));
+ strncpy(aliases, ucpath, sizeof(aliases) - 1);
alen = strlen(aliases);
#ifndef __riscos__
if (aliases[alen - 1] != '/') {
diff --git a/test/nullable.c b/test/nullable.c
index c9523f5..2052702 100644
--- a/test/nullable.c
+++ b/test/nullable.c
@@ -77,7 +77,7 @@ int main(int argc, char **argv)
assert(ucpath != NULL);
- strncpy(aliases, ucpath, sizeof(aliases));
+ strncpy(aliases, ucpath, sizeof(aliases) - 1);
alen = strlen(aliases);
#ifndef __riscos__
if (aliases[alen - 1] != '/') {
diff --git a/test/translit.c b/test/translit.c
index 240f5e2..d8252d2 100644
--- a/test/translit.c
+++ b/test/translit.c
@@ -122,7 +122,7 @@ int main(int argc, char **argv)
assert(ucpath != NULL);
- strncpy(aliases, ucpath, sizeof(aliases));
+ strncpy(aliases, ucpath, sizeof(aliases) - 1);
alen = strlen(aliases);
#ifndef __riscos__
if (aliases[alen - 1] != '/') {