diff options
author | marha <marha@users.sourceforge.net> | 2013-07-09 11:30:31 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-07-09 11:30:31 +0200 |
commit | c6069c33e3a4a6d48aa059dbe9a78702dabff9cc (patch) | |
tree | 9e98e08fa3b70c7d168d60aa981498e1f3b8ace6 /libX11/modules/lc/gen | |
parent | a9866a9e7dc9c89962a13d6e750aa5a18b98369c (diff) | |
download | vcxsrv-c6069c33e3a4a6d48aa059dbe9a78702dabff9cc.tar.gz vcxsrv-c6069c33e3a4a6d48aa059dbe9a78702dabff9cc.tar.bz2 vcxsrv-c6069c33e3a4a6d48aa059dbe9a78702dabff9cc.zip |
fontconfig libX11 libxcb mesa git update 9 Jul 2013
libxcb commit a1e67b141a57d39cbcaff1a703d6fc0da1fbb56d
libX11 commit 383e2b0d029482a0f4c39fe00e15397538576fc1
fontconfig commit 04bd904632b22682c888f658650cdcd322544273
mesa commit 292368570a13501dfa95b1b0dd70966caf6ffc6b
Diffstat (limited to 'libX11/modules/lc/gen')
-rw-r--r-- | libX11/modules/lc/gen/lcGenConv.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/libX11/modules/lc/gen/lcGenConv.c b/libX11/modules/lc/gen/lcGenConv.c index 42d63c529..1041dc709 100644 --- a/libX11/modules/lc/gen/lcGenConv.c +++ b/libX11/modules/lc/gen/lcGenConv.c @@ -764,9 +764,6 @@ mbstowcs_org( return( 0 ); } - if (*from_left > *to_left) - *from_left = *to_left; - while (*from_left && *to_left) { ch = *inbufptr++; @@ -921,9 +918,6 @@ wcstombs_org( int defstr_len = strlen(default_string); - if (*from_left > *to_left) - *from_left = *to_left; - while (*from_left && *to_left) { wc = *inbufptr++; @@ -1080,9 +1074,6 @@ wcstocts( int from_size = *from_left; char *ext_seg_len = NULL; - if (*from_left > *to_left) - *from_left = *to_left; - while (*from_left && *to_left) { wc = *inbufptr++; @@ -1272,9 +1263,6 @@ ctstowcs( return( 0 ); } - if (*from_left > *to_left) - *from_left = *to_left; - while (*from_left && *to_left) { ch = *inbufptr++; @@ -1666,9 +1654,6 @@ mbstostr( return( 0 ); } - if (*from_left > *to_left) - *from_left = *to_left; - while (*from_left && *to_left) { ch = *inbufptr++; @@ -1956,10 +1941,6 @@ wcstostr( const char *default_string = XLC_PUBLIC(lcd, default_string); int defstr_len = strlen(default_string); - - if (*from_left > *to_left) - *from_left = *to_left; - while (*from_left && *to_left) { wc = *inbufptr++; @@ -2114,9 +2095,6 @@ wctocs( char *outbufptr = *to; int from_size = *from_left; - if (*from_left > *to_left) - *from_left = *to_left; - if (*from_left && *to_left) { wc = *inbufptr++; @@ -2427,9 +2405,6 @@ strtombs( char *outbufptr = *to; int from_size = *from_left; - if (*from_left > *to_left) - *from_left = *to_left; - while (*from_left && *to_left) { ch = *inbufptr++; @@ -2537,9 +2512,6 @@ strtowcs( wchar_t *outbufptr = (wchar_t *)*to; int from_size = *from_left; - if (*from_left > *to_left) - *from_left = *to_left; - while (*from_left && *to_left) { ch = *inbufptr++; |