Diff for /libaitio/src/Attic/vars.c between versions 1.3.2.1 and 1.4.4.1

version 1.3.2.1, 2011/12/13 10:40:05 version 1.4.4.1, 2012/03/27 20:53:37
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 515  io_allocVar(void) Line 515  io_allocVar(void)
  * return: none   * return: none
  */   */
 inline void  inline void
io_freeVar(ait_val_t ** __restrict val)io_freeVar(ait_val_t * __restrict val)
 {  {
        if (val && *val) {        if (val) {
                AIT_FREE_VAL(*val);                AIT_FREE_VAL(val);
                free(*val);                free(val);
                *val = NULL;                val = NULL;
         }          }
 }  }

Removed from v.1.3.2.1  
changed lines
  Added in v.1.4.4.1


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