projects
/
platform
/
upstream
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
900c24d
)
Patch from vodz to fix a potential segfault
author
Eric Andersen
<andersen@codepoet.org>
Wed, 20 Mar 2002 14:31:15 +0000
(14:31 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Wed, 20 Mar 2002 14:31:15 +0000
(14:31 -0000)
shell/cmdedit.c
patch
|
blob
|
history
diff --git
a/shell/cmdedit.c
b/shell/cmdedit.c
index
d4d6264
..
3810c23
100644
(file)
--- a/
shell/cmdedit.c
+++ b/
shell/cmdedit.c
@@
-799,8
+799,8
@@
static int match_compare(const void *a, const void *b)
#define QUOT (UCHAR_MAX+1)
#define collapse_pos(is, in) { \
- memcpy(int_buf+
is, int_buf+in, (BUFSIZ+1-is-in
)*sizeof(int)); \
- memcpy(pos_buf+
is, pos_buf+in, (BUFSIZ+1-is-in
)*sizeof(int)); }
+ memcpy(int_buf+
(is), int_buf+(in), (BUFSIZ+1-(is)-(in)
)*sizeof(int)); \
+ memcpy(pos_buf+
(is), pos_buf+(in), (BUFSIZ+1-(is)-(in)
)*sizeof(int)); }
static int find_match(char *matchBuf, int *len_with_quotes)
{