Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/blkid/tag.c

    r1765 r2725  
    2222    blkid_tag tag;
    2323
    24     if (!(tag = (blkid_tag) calloc(1, sizeof(struct blkid_struct_tag))))
    25         return NULL;
     24    tag = xzalloc(sizeof(struct blkid_struct_tag));
    2625
    2726    INIT_LIST_HEAD(&tag->bit_tags);
     
    114113{
    115114    blkid_tag   t = 0, head = 0;
    116     char        *val = 0;
     115    char        *val = NULL;
    117116
    118117    if (!dev || !name)
     
    365364{
    366365    blkid_tag_iterate   iter;
    367     blkid_cache         cache = NULL;
     366    blkid_cache     cache = NULL;
    368367    blkid_dev       dev;
    369368    int         c, ret, found;
Note: See TracChangeset for help on using the changeset viewer.