Changeset 6e8ed225 in mainline for uspace/srv/fs/fat/fat_ops.c
- Timestamp:
- 2013-05-20T18:43:13Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4a5a18be
- Parents:
- d242cb6 (diff), acdb5bac (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
rd242cb6 r6e8ed225 651 651 d = (fat_dentry_t *) b->data; 652 652 if ((fat_classify_dentry(d) == FAT_DENTRY_LAST) || 653 ( bcmp(d->name, FAT_NAME_DOT, FAT_NAME_LEN)) == 0) {653 (memcmp(d->name, FAT_NAME_DOT, FAT_NAME_LEN)) == 0) { 654 654 memset(d, 0, sizeof(fat_dentry_t)); 655 655 memcpy(d->name, FAT_NAME_DOT, FAT_NAME_LEN); … … 661 661 d++; 662 662 if ((fat_classify_dentry(d) == FAT_DENTRY_LAST) || 663 ( bcmp(d->name, FAT_NAME_DOT_DOT, FAT_NAME_LEN) == 0)) {663 (memcmp(d->name, FAT_NAME_DOT_DOT, FAT_NAME_LEN) == 0)) { 664 664 memset(d, 0, sizeof(fat_dentry_t)); 665 665 memcpy(d->name, FAT_NAME_DOT_DOT, FAT_NAME_LEN); … … 1042 1042 info = (fat32_fsinfo_t *) b->data; 1043 1043 1044 if ( bcmp(info->sig1, FAT32_FSINFO_SIG1, sizeof(info->sig1))||1045 bcmp(info->sig2, FAT32_FSINFO_SIG2, sizeof(info->sig2))||1046 bcmp(info->sig3, FAT32_FSINFO_SIG3, sizeof(info->sig3))) {1044 if (memcmp(info->sig1, FAT32_FSINFO_SIG1, sizeof(info->sig1)) != 0 || 1045 memcmp(info->sig2, FAT32_FSINFO_SIG2, sizeof(info->sig2)) != 0 || 1046 memcmp(info->sig3, FAT32_FSINFO_SIG3, sizeof(info->sig3)) != 0) { 1047 1047 (void) block_put(b); 1048 1048 return EINVAL;
Note:
See TracChangeset
for help on using the changeset viewer.