summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-05-10 00:32:57 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-05-10 00:32:57 (GMT)
commit9c012af3c368e0017b3671d241f6c3e370328232 (patch)
tree6cc03e043b03fed98d20d90698ee2d20440dc9b1 /Objects/stringobject.c
parent4cd44ef4bfc5803c842df14fe9caacf765dd84ca (diff)
downloadcpython-9c012af3c368e0017b3671d241f6c3e370328232.zip
cpython-9c012af3c368e0017b3671d241f6c3e370328232.tar.gz
cpython-9c012af3c368e0017b3671d241f6c3e370328232.tar.bz2
Heh. I need a break. After this: stropmodule & stringobject were more
out of synch than I realized, and I managed to break replace's "count" argument when it was 0. All is well again. Maybe. Bugfix candidate.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r--Objects/stringobject.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index ec909db..7600c03 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -1557,8 +1557,10 @@ mymemreplace(const char *str, int len, /* input string */
/* find length of output string */
nfound = mymemcnt(str, len, pat, pat_len);
- if (count > 0)
- nfound = nfound > count ? count : nfound;
+ if (count < 0)
+ count = INT_MAX;
+ else if (nfound > count)
+ nfound = count;
if (nfound == 0)
goto return_same;
@@ -1566,7 +1568,7 @@ mymemreplace(const char *str, int len, /* input string */
if (new_len == 0) {
/* Have to allocate something for the caller to free(). */
out_s = (char *)PyMem_MALLOC(1);
- if (out_s = NULL)
+ if (out_s == NULL)
return NULL;
out_s[0] = '\0';
}
@@ -1577,7 +1579,7 @@ mymemreplace(const char *str, int len, /* input string */
return NULL;
out_s = new_s;
- while (len > 0) {
+ for (; count > 0 && len > 0; --count) {
/* find index of next instance of pattern */
offset = mymemfind(str, len, pat, pat_len);
if (offset == -1)
@@ -1592,10 +1594,6 @@ mymemreplace(const char *str, int len, /* input string */
new_s += offset;
memcpy(new_s, sub, sub_len);
new_s += sub_len;
-
- /* note count==0 is effectively infinity */
- if (--count == 0)
- break;
}
/* copy any remaining values into output string */
if (len > 0)