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/ext2fs/namei.c

    r1765 r2725  
    3131{
    3232    char *pathname;
    33     char *buffer = 0;
     33    char *buffer = NULL;
    3434    errcode_t retval;
    3535    struct ext2_inode ei;
     
    4949        return EXT2_ET_SYMLINK_LOOP;
    5050    }
    51     if (ext2fs_inode_data_blocks(fs,&ei)) {
     51    if (ext2fs_inode_data_blocks(fs, &ei)) {
    5252        retval = ext2fs_get_mem(fs->blocksize, &buffer);
    5353        if (retval)
     
    203203    return retval;
    204204}
    205 
Note: See TracChangeset for help on using the changeset viewer.