mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
Minor cleanups.
This commit is contained in:
parent
7b77491c06
commit
8882192fac
|
@ -294,10 +294,8 @@ void PackDjgpp2::pack(OutputFile *fo)
|
|||
ft.addvalue = text->vaddr - hdrsize;
|
||||
// compress
|
||||
upx_compress_config_t cconf; cconf.reset();
|
||||
#if 1
|
||||
// limit stack size needed for runtime decompression
|
||||
cconf.conf_lzma.max_num_probs = 1846 + (768 << 4); // ~28 kB stack
|
||||
#endif
|
||||
cconf.conf_lzma.max_num_probs = 1846 + (768 << 4); // ushort: ~28KB stack
|
||||
compressWithFilters(&ft, 512, 0, NULL, &cconf);
|
||||
|
||||
// patch coff header #2
|
||||
|
|
|
@ -221,10 +221,8 @@ void PackVmlinuxI386::pack(OutputFile *fo)
|
|||
ft.addvalue = 0; // we are independent of actual runtime address; see ckt32
|
||||
|
||||
upx_compress_config_t cconf; cconf.reset();
|
||||
#if 1 //{
|
||||
// limit stack size needed for runtime decompression
|
||||
cconf.conf_lzma.max_num_probs = 1846 + (768 << 4); // ushort: ~28KB stack
|
||||
#endif //}
|
||||
compressWithFilters(&ft, 512, 0, NULL, &cconf);
|
||||
|
||||
const unsigned lsize = getLoaderSize();
|
||||
|
@ -285,7 +283,7 @@ void PackVmlinuxI386::pack(OutputFile *fo)
|
|||
ph.level = 1;
|
||||
}
|
||||
}
|
||||
compress(ibuf, obuf);
|
||||
compress(ibuf, obuf, &cconf);
|
||||
ph.level = old_level;
|
||||
|
||||
// while (0!=*p++) ; // name is the same
|
||||
|
|
|
@ -279,10 +279,8 @@ void PackVmlinuzI386::pack(OutputFile *fo)
|
|||
|
||||
// compress
|
||||
upx_compress_config_t cconf; cconf.reset();
|
||||
#if 1 //{
|
||||
// limit stack size needed for runtime decompression
|
||||
cconf.conf_lzma.max_num_probs = 1846 + (768 << 4); // ushort: ~28KB stack
|
||||
#endif //}
|
||||
compressWithFilters(&ft, 512, 0, NULL, &cconf);
|
||||
|
||||
const unsigned lsize = getLoaderSize();
|
||||
|
@ -360,10 +358,8 @@ void PackBvmlinuzI386::pack(OutputFile *fo)
|
|||
ft.addvalue = kernel_entry; // saves 4 bytes in unfilter code
|
||||
|
||||
upx_compress_config_t cconf; cconf.reset();
|
||||
#if 1 //{
|
||||
// limit stack size needed for runtime decompression
|
||||
cconf.conf_lzma.max_num_probs = 1846 + (768 << 4); // ushort: ~28KB stack
|
||||
#endif //}
|
||||
compressWithFilters(&ft, 512, 0, NULL, &cconf);
|
||||
|
||||
// align everything to dword boundary - it is easier to handle
|
||||
|
|
Loading…
Reference in New Issue
Block a user