diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-13 08:31:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-13 08:31:09 -0400 |
commit | 4dbf7f8b8832bb16940527c18765131f7bbf83b2 (patch) | |
tree | 262b21eac2b3c06047d697a81bd899ddcf09ed4b /examples/support/ini.c | |
parent | 65903d26775789608bb336ecde03259e94b3a6d7 (diff) | |
parent | 555206cf6041c0ab8c83f3a9860cd794a7be255c (diff) |
Merge pull request #865 from martinetd/str_truncation
Fix gcc string truncation warnings
Diffstat (limited to 'examples/support/ini.c')
-rw-r--r-- | examples/support/ini.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/support/ini.c b/examples/support/ini.c index 6be9c44a..6bc1eae6 100644 --- a/examples/support/ini.c +++ b/examples/support/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; } |