Diff for /libaitcfg/src/queue.c between versions 1.7.2.2 and 1.7.2.3

version 1.7.2.2, 2012/04/05 12:21:57 version 1.7.2.3, 2012/05/23 14:52:50
Line 135  cfg_unsetAttribute(cfg_root_t * __restrict cfg, const  Line 135  cfg_unsetAttribute(cfg_root_t * __restrict cfg, const 
         AIT_FREE_VAL(&av->cfg_val);          AIT_FREE_VAL(&av->cfg_val);
         AIT_FREE_VAL(&av->cfg_attr);          AIT_FREE_VAL(&av->cfg_attr);
         AIT_FREE_VAL(&av->cfg_sec);          AIT_FREE_VAL(&av->cfg_sec);
        free(av);        io_free(av);
         return 1;          return 1;
 }  }
   
Line 161  cfg_setAttribute(cfg_root_t * __restrict cfg, const ch Line 161  cfg_setAttribute(cfg_root_t * __restrict cfg, const ch
                 /* adding new element */                  /* adding new element */
                 section = _selectAttribute(cfg, csSec, NULL);                  section = _selectAttribute(cfg, csSec, NULL);
   
                av = malloc(sizeof(struct tagCfg));                av = io_malloc(sizeof(struct tagCfg));
                 if (!av) {                  if (!av) {
                         LOGERR;                          LOGERR;
                         return -1;                          return -1;

Removed from v.1.7.2.2  
changed lines
  Added in v.1.7.2.3


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