* 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:
naruse 2008-07-29 10:31:31 +00:00
Родитель 9bd616a3d3
Коммит 7e5be7e131
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -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
Просмотреть файл

@ -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);