X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fconfig%2Fini.c;h=826d9afa36c0268b331af2b45693242a06ed762f;hb=0c51e8f329cdd907761e34c3e4394200a56c6812;hp=18ed705be9c0d74e9ce2a533bb9ca507456186f4;hpb=e7d31b972fbcc6fb9a63384b05ab8a9b882f11b5;p=lttng-tools.git diff --git a/src/common/config/ini.c b/src/common/config/ini.c index 18ed705be..826d9afa3 100644 --- a/src/common/config/ini.c +++ b/src/common/config/ini.c @@ -3,7 +3,9 @@ * * The "inih" library is distributed under the New BSD license: * - * Copyright (c) 2009, Brush Technology - All rights reserved. + * Copyright (C) 2009 Brush Technology - All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -31,7 +33,6 @@ * http://code.google.com/p/inih/ */ -#define _GNU_SOURCE #include #include #include @@ -83,7 +84,7 @@ static char* find_char_or_comment(const char* s, char c) /* 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; }