Changeset 13053 in vbox for trunk/src/VBox/Additions/linux/sharedfolders
- Timestamp:
- Oct 7, 2008 2:27:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.c
r11567 r13053 153 153 sf_g->gid = info->gid; 154 154 155 if ( info->length >= sizeof(struct vbsf_mount_info_new))155 if ((unsigned)info->length >= sizeof(struct vbsf_mount_info_new)) 156 156 { 157 157 /* new fields */ … … 263 263 sb->s_magic = 0xface; 264 264 sb->s_blocksize = 1024; 265 sb->s_maxbytes = ~0ULL; /* seek */ 265 266 sb->s_op = &sf_super_ops; 266 267
Note:
See TracChangeset
for help on using the changeset viewer.