diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-27 18:41:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-27 18:41:59 +0000 |
commit | 574f2f43948bb21d6e4187936ba5a5afccba25f6 (patch) | |
tree | 0b39aca564149e5ad30b3cc791228655ff1b1827 /archival | |
parent | fe66a0eca1bfeae0abc0fc1e7d3709f271e05e82 (diff) | |
download | busybox-574f2f43948bb21d6e4187936ba5a5afccba25f6.tar.gz |
*: add optimization barrier to all "G trick" locations
Diffstat (limited to 'archival')
-rw-r--r-- | archival/gzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index 00299b17c..36502faf7 100644 --- a/archival/gzip.c +++ b/archival/gzip.c @@ -2042,8 +2042,8 @@ int gzip_main(int argc, char **argv) //if (opt & 0x4) // -v argv += optind; - PTR_TO_GLOBALS = xzalloc(sizeof(struct globals) + sizeof(struct globals2)) - + sizeof(struct globals); + SET_PTR_TO_GLOBALS(xzalloc(sizeof(struct globals) + sizeof(struct globals2)) + + sizeof(struct globals)); G2.l_desc.dyn_tree = G2.dyn_ltree; G2.l_desc.static_tree = G2.static_ltree; G2.l_desc.extra_bits = extra_lbits; |