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/dev.c

    r1765 r2725  
    2121    blkid_dev dev;
    2222
    23     if (!(dev = (blkid_dev) calloc(1, sizeof(struct blkid_struct_dev))))
    24         return NULL;
     23    dev = xzalloc(sizeof(struct blkid_struct_dev));
    2524
    2625    INIT_LIST_HEAD(&dev->bid_devs);
     
    8382            printf("    tag: NULL\n");
    8483    }
    85     puts("");
     84    bb_putchar('\n');
    8685}
    8786#endif
     
    162161{
    163162    blkid_dev_iterate   iter;
    164     blkid_cache         cache = NULL;
     163    blkid_cache     cache = NULL;
    165164    blkid_dev       dev;
    166165    int         c, ret;
Note: See TracChangeset for help on using the changeset viewer.