summaryrefslogtreecommitdiffstats
path: root/Objects/stringlib/find.h
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-26 22:48:41 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-26 22:48:41 (GMT)
commitf2e9368021d8e22e3dce5c201fea111660d75ee1 (patch)
treede0f9eac2f420fd2d4c6ed59dd4758659aba96e7 /Objects/stringlib/find.h
parent60320cb3e4fa0d77ae5f8634d83de497bba003f6 (diff)
downloadcpython-f2e9368021d8e22e3dce5c201fea111660d75ee1.zip
cpython-f2e9368021d8e22e3dce5c201fea111660d75ee1.tar.gz
cpython-f2e9368021d8e22e3dce5c201fea111660d75ee1.tar.bz2
Merged revisions 66631 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66631 | amaury.forgeotdarc | 2008-09-27 00:34:08 +0200 (sam., 27 sept. 2008) | 7 lines #3967: Correct a crash in count() and find() methods of string-like objects. For example: "".count("xxxx", sys.maxint, 0) Reviewed by Benjamin Peterson. Will port to 2.5 and 3.0. ........
Diffstat (limited to 'Objects/stringlib/find.h')
-rw-r--r--Objects/stringlib/find.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/Objects/stringlib/find.h b/Objects/stringlib/find.h
index 46337e1..bf06530 100644
--- a/Objects/stringlib/find.h
+++ b/Objects/stringlib/find.h
@@ -14,11 +14,10 @@ stringlib_find(const STRINGLIB_CHAR* str, Py_ssize_t str_len,
{
Py_ssize_t pos;
- if (sub_len == 0) {
- if (str_len < 0)
- return -1;
+ if (str_len < 0)
+ return -1;
+ if (sub_len == 0)
return offset;
- }
pos = fastsearch(str, str_len, sub, sub_len, FAST_SEARCH);