projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f007bb8
)
fix crash in wordfree if we_offs is not initialized by the caller
author
Rich Felker
<dalias@aerifal.cx>
Mon, 16 Apr 2012 17:03:22 +0000
(13:03 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Mon, 16 Apr 2012 17:03:22 +0000
(13:03 -0400)
I'm not sure if it's legal for wordexp to modify this field, but this
is the only easy/straightforward fix, and applications should not
care. if it's an issue, i can work out a different (but more complex)
solution later.
src/misc/wordexp.c
patch
|
blob
|
history
diff --git
a/src/misc/wordexp.c
b/src/misc/wordexp.c
index 4a3efc7bc40a83d055bb1f4d952e6b70b2d4893c..34fc900ac73e3ea928f111ecc098f1b15036eed2 100644
(file)
--- a/
src/misc/wordexp.c
+++ b/
src/misc/wordexp.c
@@
-82,6
+82,8
@@
static int do_wordexp(const char *s, wordexp_t *we, int flags)
if (we->we_offs > SIZE_MAX/sizeof(void *)/4)
return WRDE_NOSPACE;
i += we->we_offs;
+ } else {
+ we->we_offs = 0;
}
if (pipe(p) < 0) return WRDE_NOSPACE;