svn commit: r1936912 - apr/apr/trunk/dbd
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <178601996013.3015421.10292995080941014482@svn03-he-fi> |
Author: covener
Date: Thu Aug 6 12:39:19 2026
New Revision: 1936912
Log:
build break review from rpluem
patch by IBM Bob, still not compiled.
Modified:
apr/apr/trunk/dbd/apr_dbd_oracle.c
Modified: apr/apr/trunk/dbd/apr_dbd_oracle.c
==============================================================================
--- apr/apr/trunk/dbd/apr_dbd_oracle.c Thu Aug 6 11:30:58 2026 (r1936911)
+++ apr/apr/trunk/dbd/apr_dbd_oracle.c Thu Aug 6 12:39:19 2026 (r1936912)
@@ -853,15 +853,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++ = '\'';