* regexec.c (slow_search): check the case when the length is 1.

The behavior of memcmp is undefined if the third argument is 0.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16482 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-05-19 14:21:15 +00:00
Родитель 67d0fbd03f
Коммит a4195fc99b
2 изменённых файлов: 7 добавлений и 2 удалений

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

@ -1,3 +1,8 @@
Mon May 19 23:19:35 2008 Yusuke Endoh <mame@tsg.ne.jp>
* regexec.c (slow_search): check the case when the length is 1.
The behavior of memcmp is undefined if the third argument is 0.
Mon May 19 21:07:48 2008 Koichi Sasada <ko1@atdot.net>
* thread_pthread.c (native_thread_apply_priority):

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

@ -2765,7 +2765,7 @@ slow_search(OnigEncoding enc, UChar* target, UChar* target_end,
if (*s == *target) {
p = s + 1;
t = target + 1;
if (memcmp(t, p, target_end - t) == 0)
if (target_end == t || memcmp(t, p, target_end - t) == 0)
return s;
}
s += n;
@ -2776,7 +2776,7 @@ slow_search(OnigEncoding enc, UChar* target, UChar* target_end,
if (*s == *target) {
p = s + 1;
t = target + 1;
if (memcmp(t, p, target_end - t) == 0)
if (target_end == t || memcmp(t, p, target_end - t) == 0)
return s;
}
s += enclen(enc, s, end);