- Fix build with php54

PR:		168382
Submitted by:	Nicolas Raspail <nicolas.raspail@gmail.com>
This commit is contained in:
Martin Wilke 2012-05-28 04:47:05 +00:00
parent b8224b48a9
commit fd961bb24d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=297569

View File

@ -0,0 +1,16 @@
???--- uploadprogress.c.orig 2012-05-27 18:32:23.891923716 +0200
+++ uploadprogress.c 2012-05-27 18:33:33.601926257 +0200
@@ -457,11 +457,12 @@
/* uses mmap if possible */
if ((len = php_stream_copy_to_mem(stream, &contents, maxlen, 0)) > 0) {
+#if PHP_API_VERSION < 20100412
if (PG(magic_quotes_runtime)) {
contents = php_addslashes(contents, len, &newlen, 1 TSRMLS_CC);
len = newlen;
}
-
+#endif
RETVAL_STRINGL(contents, len, 0);
} else if (len == 0) {
RETVAL_EMPTY_STRING();