|
本帖最后由 不点 于 2015-7-18 11:23 编辑
6月9日的改动,如下代码有疑问:
disk_io.c
- stage2/disk_io.c
- @@ -2321,7 +2321,7 @@ grub_read (unsigned long long buf, unsigned long long len, unsigned long write)
- || fsys_table[fsys_type].read_func == pxe_read
- #endif
- #ifndef NO_DECOMPRESSION
- - || (compressed_file && decomp_type == 1)
- + || (compressed_file && decomp_type == DECOMP_TYPE_GZ)
- #endif /* NO_DECOMPRESSION */
- )
- {
复制代码
上述改动,只自动解压 gz 文件,而禁止了对 lzma 的自动解压。改动前是要自动解压所有的压缩格式的。
Steve6375 也说,6月5日是可靠版本。因此,6月9日可能确实引入了 bug。 |
|