X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fmetadata.c;h=35aea004e67aecb05b5c44c54630468b82c551ce;hb=81663f073dbfb4b61c06a0ceb8ca33c4fc41b1c5;hp=663099dfd5c181f0827f44e1c6e1a338e2f5b9a1;hpb=c86592f2f38b1ea5d56dd949fd44272a3073b269;p=lttng-tools.git diff --git a/src/bin/lttng/commands/metadata.c b/src/bin/lttng/commands/metadata.c index 663099dfd..35aea004e 100644 --- a/src/bin/lttng/commands/metadata.c +++ b/src/bin/lttng/commands/metadata.c @@ -1,22 +1,11 @@ /* - * Copyright (C) 2015 - Julien Desfossez + * Copyright (C) 2015 Julien Desfossez * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License, version 2 only, - * as published by the Free Software Foundation. + * 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. */ #define _LGPL_SOURCE -#include #include #include #include @@ -68,7 +57,7 @@ static int count_arguments(const char **argv) { int i = 0; - assert(argv); + LTTNG_ASSERT(argv); while (argv[i] != NULL) { i++; @@ -108,6 +97,7 @@ static int handle_command(const char **argv) } argc = count_arguments(argv); + LTTNG_ASSERT(argc >= 1); cmd = &actions[i]; while (cmd->func != NULL) {