Changes in uspace/lib/ext4/src/extent.c [a76e76b:f167c851] in mainline
- File:
- 
      - 1 edited
 
 - 
          
  uspace/lib/ext4/src/extent.c (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      uspace/lib/ext4/src/extent.cra76e76b rf167c851 888 888 ext4_extent_path_t *old_root = path + 1; 889 889 890 size_t nbytes = sizeof(ext4_extent_path_t) * (path->depth + 1); 891 memmove(old_root, new_root, nbytes); 890 for (int i = path->depth; i >= 0; i--) 891 path[i + 1] = path[i]; 892 892 893 memset(new_root, 0, sizeof(ext4_extent_path_t)); 893 894 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
