X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Fregression%2Fust%2Flibc-wrapper%2Fprog.c;h=999d880a3dc744fe029ce30638d55b42de7518e6;hb=d37ac3cdc4fe21f117edfb829db4d0eb7cf914a1;hp=b54bb49b410601ff3a771d6976eddccf5a0da1cd;hpb=dc58739193be66b3d60f2d6ec057571afa136c22;p=lttng-tools.git diff --git a/tests/regression/ust/libc-wrapper/prog.c b/tests/regression/ust/libc-wrapper/prog.c index b54bb49b4..999d880a3 100644 --- a/tests/regression/ust/libc-wrapper/prog.c +++ b/tests/regression/ust/libc-wrapper/prog.c @@ -1,18 +1,7 @@ -/* Copyright (C) 2009 Pierre-Marc Fournier +/* Copyright (C) 2009 Pierre-Marc Fournier * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * SPDX-License-Identifier: LGPL-2.1-only * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /* This program is used to test malloc instrumentation with libustinstr-malloc. @@ -31,6 +20,9 @@ int main(int argc, char **argv) for (i = 0; i < N_ITER; i++) { ptrs[i] = malloc(i+1000); + if (!ptrs[i]) { + exit(EXIT_FAILURE); + } memcpy(ptrs[i], teststr, sizeof(teststr));