aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-27 18:41:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-27 18:41:59 +0000
commit574f2f43948bb21d6e4187936ba5a5afccba25f6 (patch)
tree0b39aca564149e5ad30b3cc791228655ff1b1827 /shell/hush.c
parentfe66a0eca1bfeae0abc0fc1e7d3709f271e05e82 (diff)
downloadbusybox-w32-574f2f43948bb21d6e4187936ba5a5afccba25f6.tar.gz
busybox-w32-574f2f43948bb21d6e4187936ba5a5afccba25f6.tar.bz2
busybox-w32-574f2f43948bb21d6e4187936ba5a5afccba25f6.zip
*: add optimization barrier to all "G trick" locations
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index d9ef2390e..b44f35bdd 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -460,6 +460,9 @@ enum { run_list_level = 0 };
460#endif 460#endif
461#define charmap (G.charmap ) 461#define charmap (G.charmap )
462#define user_input_buf (G.user_input_buf ) 462#define user_input_buf (G.user_input_buf )
463#define INIT_G() do { \
464 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
465} while (0)
463 466
464 467
465#define B_CHUNK 100 468#define B_CHUNK 100
@@ -3778,7 +3781,7 @@ int hush_main(int argc, char **argv)
3778 char **e; 3781 char **e;
3779 struct variable *cur_var; 3782 struct variable *cur_var;
3780 3783
3781 PTR_TO_GLOBALS = xzalloc(sizeof(G)); 3784 INIT_G();
3782 3785
3783 /* Deal with HUSH_VERSION */ 3786 /* Deal with HUSH_VERSION */
3784 shell_ver = const_shell_ver; /* copying struct here */ 3787 shell_ver = const_shell_ver; /* copying struct here */