summaryrefslogtreecommitdiff
path: root/bash/bash-2.05b/bash205b-005.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /bash/bash-2.05b/bash205b-005.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'bash/bash-2.05b/bash205b-005.patch')
-rw-r--r--bash/bash-2.05b/bash205b-005.patch68
1 files changed, 0 insertions, 68 deletions
diff --git a/bash/bash-2.05b/bash205b-005.patch b/bash/bash-2.05b/bash205b-005.patch
deleted file mode 100644
index 366477744b..0000000000
--- a/bash/bash-2.05b/bash205b-005.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-*** ../bash-2.05b/lib/readline/mbutil.c Tue Jun 4 11:54:29 2002
---- lib/readline/mbutil.c Mon Aug 5 11:20:39 2002
-***************
-*** 206,210 ****
- {
- /* shorted to compose multibyte char */
-! memset (ps, 0, sizeof(mbstate_t));
- return -2;
- }
---- 206,211 ----
- {
- /* shorted to compose multibyte char */
-! if (ps)
-! memset (ps, 0, sizeof(mbstate_t));
- return -2;
- }
-***************
-*** 213,217 ****
- /* invalid to compose multibyte char */
- /* initialize the conversion state */
-! memset (ps, 0, sizeof(mbstate_t));
- return -1;
- }
---- 214,219 ----
- /* invalid to compose multibyte char */
- /* initialize the conversion state */
-! if (ps)
-! memset (ps, 0, sizeof(mbstate_t));
- return -1;
- }
-***************
-*** 226,232 ****
- int
- _rl_compare_chars (buf1, pos1, ps1, buf2, pos2, ps2)
-! char *buf1, *buf2;
-! mbstate_t *ps1, *ps2;
-! int pos1, pos2;
- {
- int i, w1, w2;
---- 228,237 ----
- int
- _rl_compare_chars (buf1, pos1, ps1, buf2, pos2, ps2)
-! char *buf1;
-! int pos1;
-! mbstate_t *ps1;
-! char *buf2;
-! int pos2;
-! mbstate_t *ps2;
- {
- int i, w1, w2;
-***************
-*** 277,282 ****
- /* clear the state of the byte sequence, because
- in this case effect of mbstate is undefined */
-! memset (ps, 0, sizeof (mbstate_t));
- }
- else
- pos += tmp;
---- 282,290 ----
- /* clear the state of the byte sequence, because
- in this case effect of mbstate is undefined */
-! if (ps)
-! memset (ps, 0, sizeof (mbstate_t));
- }
-+ else if (tmp == 0)
-+ pos++;
- else
- pos += tmp;