We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83f34f5 + 62cf962 commit 7b4cb1fCopy full SHA for 7b4cb1f
library/Zend/Db/Statement.php
@@ -198,6 +198,12 @@ protected function _stripQuoted($sql)
198
$sql = preg_replace("/$q([^$q{$escapeChar}]*|($qe)*)*$q/s", '', $sql);
199
}
200
201
+ if ($sql === null) {
202
+ // this preg_replace call can return NULL in case of error (PREG_BACKTRACK_LIMIT_ERROR).
203
+ // In this case the result of this method will be an empty string.
204
+ return '';
205
+ }
206
+
207
// get a version of the SQL statement with all quoted
208
// values and delimited identifiers stripped out
209
// remove "foo\"bar"
0 commit comments