exfat: Fix stream extension flag parsing.
This commit is contained in:
parent
3bca85b418
commit
ca7bb46d5c
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ grub_fat_iterate_dir_next (grub_fshelp_node_t node,
|
||||||
ctxt->dir.file_size
|
ctxt->dir.file_size
|
||||||
= grub_cpu_to_le64 (sec.type_specific.stream_extension.file_size);
|
= grub_cpu_to_le64 (sec.type_specific.stream_extension.file_size);
|
||||||
ctxt->dir.have_stream = 1;
|
ctxt->dir.have_stream = 1;
|
||||||
ctxt->dir.is_contiguous = !!(dir.type_specific.stream_extension.flags
|
ctxt->dir.is_contiguous = !!(sec.type_specific.stream_extension.flags
|
||||||
& grub_cpu_to_le16_compile_time (FLAG_CONTIGUOUS));
|
& grub_cpu_to_le16_compile_time (FLAG_CONTIGUOUS));
|
||||||
break;
|
break;
|
||||||
case 0xc1:
|
case 0xc1:
|
||||||
|
|
Loading…
Reference in a new issue