--- freem/src/mref.c 2025/01/19 02:04:04 1.1.1.1 +++ freem/src/mref.c 2025/03/09 19:50:47 1.4 @@ -1,23 +1,11 @@ /* - * * - * * * - * * * - * *************** - * * * * * - * * MUMPS * - * * * * * - * *************** - * * * - * * * - * * - * - * mref.c + * $Id: mref.c,v 1.4 2025/03/09 19:50:47 snw Exp $ * supporting functions for handling freem_ref_t structures * * - * Author: Serena Willis + * Author: Serena Willis * Copyright (C) 1998 MUG Deutschland - * Copyright (C) 2020 Coherent Logic Development LLC + * Copyright (C) 2020, 2025 Coherent Logic Development LLC * * * This file is part of FreeM. @@ -35,6 +23,13 @@ * You should have received a copy of the GNU Affero Public License * along with FreeM. If not, see . * + * $Log: mref.c,v $ + * Revision 1.4 2025/03/09 19:50:47 snw + * Second phase of REUSE compliance and header reformat + * + * + * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC + * SPDX-License-Identifier: AGPL-3.0-or-later **/ #include @@ -45,6 +40,7 @@ #include "freem.h" #define MREF_CHECK(ref,index,type) if (ref->status != MREF_ST_INIT || index > 255 || index < 0) return (type) NULL +#define MREF_CHECK_EXIT(ref,index,type) if (ref->status != MREF_ST_INIT || index > 255 || index < 0) exit (type) NULL extern short g_numeric (char *str); @@ -97,7 +93,7 @@ void mref_to_internal_prealloc (char *re { register int i; - MREF_CHECK (ref, 0, char *); +/* MREF_CHECK (ref, 0, char *); */ strncpy (res, ref->name, STRLEN - 1);