diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-20 14:31:15 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-20 14:31:15 +0000 |
commit | 889a301a0c992cef843322ba7d2af62fcf44ab2a (patch) | |
tree | acf535945e56f7d18e41334a477c44dc2fbddd31 | |
parent | 900c24dc4e98edb5fdb96035028f5d344ce72792 (diff) | |
download | busybox-w32-889a301a0c992cef843322ba7d2af62fcf44ab2a.tar.gz busybox-w32-889a301a0c992cef843322ba7d2af62fcf44ab2a.tar.bz2 busybox-w32-889a301a0c992cef843322ba7d2af62fcf44ab2a.zip |
Patch from vodz to fix a potential segfault
-rw-r--r-- | shell/cmdedit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c index d4d6264d0..3810c230a 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c | |||
@@ -799,8 +799,8 @@ static int match_compare(const void *a, const void *b) | |||
799 | #define QUOT (UCHAR_MAX+1) | 799 | #define QUOT (UCHAR_MAX+1) |
800 | 800 | ||
801 | #define collapse_pos(is, in) { \ | 801 | #define collapse_pos(is, in) { \ |
802 | memcpy(int_buf+is, int_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); \ | 802 | memcpy(int_buf+(is), int_buf+(in), (BUFSIZ+1-(is)-(in))*sizeof(int)); \ |
803 | memcpy(pos_buf+is, pos_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); } | 803 | memcpy(pos_buf+(is), pos_buf+(in), (BUFSIZ+1-(is)-(in))*sizeof(int)); } |
804 | 804 | ||
805 | static int find_match(char *matchBuf, int *len_with_quotes) | 805 | static int find_match(char *matchBuf, int *len_with_quotes) |
806 | { | 806 | { |