diff options
author | Barry Warsaw <barry@python.org> | 2002-08-06 19:03:17 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-08-06 19:03:17 (GMT) |
commit | 6a043f3fe8394fe8f8178df313ccf7af69ba50b9 (patch) | |
tree | 104cf461e8436351d333ddb12abed6e2bec7d910 /Objects | |
parent | 496e6581e1f4fab85014b17c3db95e0378c4ffc0 (diff) | |
download | cpython-6a043f3fe8394fe8f8178df313ccf7af69ba50b9.zip cpython-6a043f3fe8394fe8f8178df313ccf7af69ba50b9.tar.gz cpython-6a043f3fe8394fe8f8178df313ccf7af69ba50b9.tar.bz2 |
PyUnicode_Contains(): The memcmp() call didn't take into account the
width of Py_UNICODE. Good catch, MAL.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index a577bfd..03b5dbd 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -3765,7 +3765,7 @@ int PyUnicode_Contains(PyObject *container, else { end = lhs + (PyUnicode_GET_SIZE(u) - size); while (lhs <= end) { - if (memcmp(lhs++, rhs, size) == 0) { + if (memcmp(lhs++, rhs, size * sizeof(Py_UNICODE)) == 0) { result = 1; break; } |