Changeset 826
- Timestamp:
- 05/07/07 11:13:32 (2 years ago)
- Files:
-
- 1.8.2/branches/devel/src/attrib.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.2/branches/devel/src/attrib.c
r823 r826 569 569 } 570 570 } else { 571 if (!A F_FLAGS(root) & AF_ROOT) /* Upgrading old database */572 A F_FLAGS(root) |= AF_ROOT;571 if (!AL_FLAGS(root) & AF_ROOT) /* Upgrading old database */ 572 AL_FLAGS(root) |= AF_ROOT; 573 573 } 574 574 } … … 661 661 if (!EMPTY_ATTRS) { 662 662 unsigned char *t = compress(" "); 663 if (!t) { 664 push_free_list(root); 665 return AE_TREE; 666 } 663 if (!t) 664 mush_panic(T("Unable to allocate memory in atr_add()!")); 667 665 root->data = chunk_create(t, u_strlen(t), 0); 668 666 free(t);
