projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8d076b
)
hush: fix a case where EXIT trap may modify its code mid-flight
author
Denys Vlasenko
<vda.linux@googlemail.com>
Fri, 19 Jan 2018 15:58:44 +0000
(16:58 +0100)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Fri, 19 Jan 2018 15:58:44 +0000
(16:58 +0100)
function old new delta
hush_exit 93 99 +6
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/hush.c
patch
|
blob
|
history
diff --git
a/shell/hush.c
b/shell/hush.c
index 85526a9f0ce406e5dd6838078555cc3853cda504..7b83c736c1ec8e77632be08d8226f9c58496ebd6 100644
(file)
--- a/
shell/hush.c
+++ b/
shell/hush.c
@@
-1936,7
+1936,7
@@
static void hush_exit(int exitcode)
if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) {
char *argv[3];
/* argv[0] is unused */
- argv[1] =
G_traps[0];
+ argv[1] =
xstrdup(G_traps[0]); /* copy, since EXIT trap handler may modify G_traps[0] */
argv[2] = NULL;
G.exiting = 1; /* prevent EXIT trap recursion */
/* Note: G_traps[0] is not cleared!