mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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:
parent
67d0fbd03f
commit
a4195fc99b
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
Mon May 19 21:07:48 2008 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* thread_pthread.c (native_thread_apply_priority):
|
* thread_pthread.c (native_thread_apply_priority):
|
||||||
|
|
|
@ -2765,7 +2765,7 @@ slow_search(OnigEncoding enc, UChar* target, UChar* target_end,
|
||||||
if (*s == *target) {
|
if (*s == *target) {
|
||||||
p = s + 1;
|
p = s + 1;
|
||||||
t = target + 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;
|
return s;
|
||||||
}
|
}
|
||||||
s += n;
|
s += n;
|
||||||
|
@ -2776,7 +2776,7 @@ slow_search(OnigEncoding enc, UChar* target, UChar* target_end,
|
||||||
if (*s == *target) {
|
if (*s == *target) {
|
||||||
p = s + 1;
|
p = s + 1;
|
||||||
t = target + 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;
|
return s;
|
||||||
}
|
}
|
||||||
s += enclen(enc, s, end);
|
s += enclen(enc, s, end);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue