tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / unit / ini_config / ini_config.c
index e9710275b39bb56e3b5a162228ffd333207048f7..a16d1b9e8d8f540a4e87215e6ab9c2162eebc4d9 100644 (file)
@@ -1,24 +1,15 @@
 /*
- * Copyright (c) - 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by as
- * published by the Free Software Foundation; only version 2 of the License.
+ * SPDX-License-Identifier: GPL-2.0-only
  *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #include <tap/tap.h>
 #include <common/config/session-config.h>
 #include <common/utils.h>
 #include <string.h>
+#include <lttng/constant.h>
 
 struct state {
        int section_1;
@@ -33,8 +24,7 @@ int lttng_opt_quiet = 1;
 int lttng_opt_verbose = 0;
 int lttng_opt_mi;
 
-int entry_handler(const struct config_entry *entry,
-               struct state *state)
+static int entry_handler(const struct config_entry *entry, struct state *state)
 {
        int ret = 0;
 
@@ -81,6 +71,11 @@ int main(int argc, char **argv)
                goto end;
        }
 
+       if (strlen(argv[1]) >= LTTNG_PATH_MAX) {
+               diag("The provided path exceeds the maximal permitted length of %i bytes",
+                               LTTNG_PATH_MAX);
+               goto end;
+       }
        path = utils_expand_path(argv[1]);
        if (!path) {
                fail("Failed to resolve sample INI file path")
This page took 0.026262 seconds and 5 git commands to generate.