Diff for /freem/src/mref.c between versions 1.1 and 1.3

version 1.1, 2025/01/19 02:04:04 version 1.3, 2025/03/09 15:20:18
Line 15 Line 15
  *    supporting functions for handling freem_ref_t structures   *    supporting functions for handling freem_ref_t structures
  *   *
  *     *  
  *   Author: Serena Willis <jpw@coherent-logic.com>   *   Author: Serena Willis <snw@coherent-logic.com>
  *    Copyright (C) 1998 MUG Deutschland   *    Copyright (C) 1998 MUG Deutschland
  *    Copyright (C) 2020 Coherent Logic Development LLC   *    Copyright (C) 2020 Coherent Logic Development LLC
  *   *
Line 45 Line 45
 #include "freem.h"  #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(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);  extern short g_numeric (char *str);
   
Line 97  void mref_to_internal_prealloc (char *re Line 98  void mref_to_internal_prealloc (char *re
 {  {
     register int i;      register int i;
   
     MREF_CHECK (ref, 0, char *);  /*    MREF_CHECK (ref, 0, char *); */
   
     strncpy (res, ref->name, STRLEN - 1);      strncpy (res, ref->name, STRLEN - 1);
           

Removed from v.1.1  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>