aboutsummaryrefslogtreecommitdiff
path: root/rootston/ini.c
diff options
context:
space:
mode:
Diffstat (limited to 'rootston/ini.c')
-rw-r--r--rootston/ini.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/ini.c b/rootston/ini.c
index 56cc9ea6..f515dd38 100644
--- a/rootston/ini.c
+++ b/rootston/ini.c
@@ -64,7 +64,7 @@ static char* find_chars_or_comment(const char* s, const char* chars)
/* Version of strncpy that ensures dest (size bytes) is null-terminated. */
static char* strncpy0(char* dest, const char* src, size_t size)
{
- strncpy(dest, src, size);
+ strncpy(dest, src, size-1);
dest[size - 1] = '\0';
return dest;
}