зеркало из https://github.com/github/ruby.git
* dir.c (char_casecmp): fix: return 0 if either of characters is NUL.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18257 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
9bd616a3d3
Коммит
7e5be7e131
|
@ -1,3 +1,7 @@
|
|||
Tue Jul 29 17:54:35 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* dir.c (char_casecmp): fix: return 0 if either of characters is NUL.
|
||||
|
||||
Tue Jul 29 13:17:03 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* test/etc/test_etc.rb (test_getpwuid): fix for users whose uid is
|
||||
|
|
3
dir.c
3
dir.c
|
@ -89,8 +89,7 @@ char_casecmp(const char *p1, const char *p2, rb_encoding *enc, const int nocase)
|
|||
const char *p1end, *p2end;
|
||||
int c1, c2;
|
||||
|
||||
if (!*p1) return *p1;
|
||||
if (!*p2) return -*p2;
|
||||
if (!*p1 || !*p2) return !!*p1 - !!*p2;
|
||||
p1end = p1 + strlen(p1);
|
||||
p2end = p2 + strlen(p2);
|
||||
c1 = rb_enc_codepoint(p1, p1end, enc);
|
||||
|
|
Загрузка…
Ссылка в новой задаче