svn commit: r1936913 - in apr/apr-util/branches/1.7.x: . dbd
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <178602003973.3016829.7608365531360449161@svn03-he-fi> |
Author: covener
Date: Thu Aug 6 12:40:39 2026
New Revision: 1936913
Log:
Merge r1936912 from apr trunk:
build break review from rpluem
patch by IBM Bob, still not compiled.
Modified:
apr/apr-util/branches/1.7.x/ (props changed)
apr/apr-util/branches/1.7.x/dbd/apr_dbd_oracle.c
Modified: apr/apr-util/branches/1.7.x/dbd/apr_dbd_oracle.c
==============================================================================
--- apr/apr-util/branches/1.7.x/dbd/apr_dbd_oracle.c Thu Aug 6 12:39:19 2026 (r1936912)
+++ apr/apr-util/branches/1.7.x/dbd/apr_dbd_oracle.c Thu Aug 6 12:40:39 2026 (r1936913)
@@ -852,15 +852,15 @@ static const char *dbd_oracle_escape(apr
int qcount;
/* return the original if there are no single-quotes */
- if (!(sq = strchr(s, '\'')))
- return (char *)s;
+ if (!(sq = strchr(arg, '\'')))
+ return (char *)arg;
/* count the single-quotes and allocate a new buffer */
for (qcount = 1; (sq = strchr(sq + 1, '\'')); )
qcount++;
- newstr = apr_palloc(pool, strlen(s) + qcount + 1);
+ newstr = apr_palloc(pool, strlen(arg) + qcount + 1);
/* move chars, doubling all single-quotes */
- src = (char *)s;
+ src = (char *)arg;
for (dst = newstr; *src; src++) {
if ((*dst++ = *src) == '\'')
*dst++ = '\'';