]> granicus.if.org Git - php/commitdiff
finish
authorMichael Wallner <mike@php.net>
Wed, 2 Jul 2014 12:35:20 +0000 (14:35 +0200)
committerMichael Wallner <mike@php.net>
Thu, 3 Jul 2014 18:40:40 +0000 (20:40 +0200)
main/SAPI.c
main/php_memory_streams.h
main/streams/memory.c
main/streams/php_stream_plain_wrapper.h
main/streams/plain_wrapper.c

index 653f5871757e987abbc4474a49209320887c32a0..f9e9ccb049d6a5fc78fe59a026a10d03daa67dfe 100644 (file)
@@ -279,7 +279,7 @@ SAPI_API SAPI_POST_READER_FUNC(sapi_read_standard_form_data)
        }
 
 
-       SG(request_info).request_body = php_stream_temp_create(TEMP_STREAM_DEFAULT, SAPI_POST_BLOCK_SIZE);
+       SG(request_info).request_body = php_stream_temp_create_ex(TEMP_STREAM_DEFAULT, SAPI_POST_BLOCK_SIZE, PG(upload_tmp_dir));
 
        if (sapi_module.read_post) {
                int read_bytes;
index 32a3dae0dfe5840699b88cd83acd1f86532387d0..689d9f280a8f6f30b59b4ac600d8926474d11f81 100644 (file)
@@ -37,7 +37,7 @@
 #define php_stream_temp_new() php_stream_temp_create(TEMP_STREAM_DEFAULT, PHP_STREAM_MAX_MEM)
 #define php_stream_temp_create(mode, max_memory_usage) php_stream_temp_create_ex((mode), (max_memory_usage), NULL)
 #define php_stream_temp_create_ex(mode, max_memory_usage, tmpdir) _php_stream_temp_create_ex((mode), (max_memory_usage), (tmpdir) STREAMS_CC TSRMLS_CC)
-#define php_stream_temp_create_rel(mode, max_memory_usage) _php_stream_temp_create((mode), (max_memory_usage) STREAMS_REL_CC TSRMLS_CC)
+#define php_stream_temp_create_rel(mode, max_memory_usage) _php_stream_temp_create_ex((mode), (max_memory_usage), NULL STREAMS_REL_CC TSRMLS_CC)
 #define php_stream_temp_open(mode, max_memory_usage, buf, length) _php_stream_temp_open((mode), (max_memory_usage), (buf), (length) STREAMS_CC TSRMLS_CC)
 
 BEGIN_EXTERN_C()
@@ -45,7 +45,6 @@ PHPAPI php_stream *_php_stream_memory_create(int mode STREAMS_DC TSRMLS_DC);
 PHPAPI php_stream *_php_stream_memory_open(int mode, char *buf, size_t length STREAMS_DC TSRMLS_DC);
 PHPAPI char *_php_stream_memory_get_buffer(php_stream *stream, size_t *length STREAMS_DC TSRMLS_DC);
 
-PHPAPI php_stream *_php_stream_temp_create(int mode, size_t max_memory_usage STREAMS_DC TSRMLS_DC);
 PHPAPI php_stream *_php_stream_temp_create_ex(int mode, size_t max_memory_usage, const char *tmpdir STREAMS_DC TSRMLS_DC);
 PHPAPI php_stream *_php_stream_temp_open(int mode, size_t max_memory_usage, char *buf, size_t length STREAMS_DC TSRMLS_DC);
 END_EXTERN_C()
index 6b3fc3f95bcd96c3ce8f4d84da3de6e4758dadf9..1f6bfbde04d7343d26613f13de93b413d0705a4b 100644 (file)
@@ -357,6 +357,7 @@ typedef struct {
 
 
 /* {{{ */
+
 static size_t php_stream_temp_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC)
 {
        php_stream_temp_data *ts = (php_stream_temp_data*)stream->abstract;
index 4370867995cbaa29c28c3a8e94d10d3ba3684c5d..d185e7487127275a920a1da33ab89ffba58a59a9 100644 (file)
@@ -42,11 +42,9 @@ PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const cha
 PHPAPI php_stream *_php_stream_fopen_from_pipe(FILE *file, const char *mode STREAMS_DC TSRMLS_DC);
 #define php_stream_fopen_from_pipe(file, mode) _php_stream_fopen_from_pipe((file), (mode) STREAMS_CC TSRMLS_CC)
 
-PHPAPI php_stream *_php_stream_fopen_tmpfile(int dummy STREAMS_DC TSRMLS_DC);
-#define php_stream_fopen_tmpfile()     _php_stream_fopen_tmpfile(0 STREAMS_CC TSRMLS_CC)
-
 PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char *pfx, char **opened_path STREAMS_DC TSRMLS_DC);
 #define php_stream_fopen_temporary_file(dir, pfx, opened_path) _php_stream_fopen_temporary_file((dir), (pfx), (opened_path) STREAMS_CC TSRMLS_CC)
+#define php_stream_fopen_tmpfile() _php_stream_fopen_temporary_file(NULL, "php", NULL STREAMS_CC TSRMLS_CC)
 
 /* This is a utility API for extensions that are opening a stream, converting it
  * to a FILE* and then closing it again.  Be warned that fileno() on the result
index aba16ff8314a3e807a29019599df9e298597fe1c..d7d25f2c8523feb031a5156c1b13584d4686ac9c 100644 (file)
@@ -188,7 +188,7 @@ PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char
        char *opened_path = NULL;
        int fd;
 
-       fd = php_open_temporary_fd(dir, pfx, opened_path TSRMLS_CC);
+       fd = php_open_temporary_fd(dir, pfx, &opened_path TSRMLS_CC);
        if (fd != -1)   {
                php_stream *stream;
 
@@ -216,11 +216,6 @@ PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char
        return NULL;
 }
 
-PHPAPI php_stream *_php_stream_fopen_tmpfile(int dummy STREAMS_DC TSRMLS_DC)
-{
-       return php_stream_fopen_temporary_file(NULL, "php", NULL);
-}
-
 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id STREAMS_DC TSRMLS_DC)
 {
        php_stream *stream = php_stream_fopen_from_fd_int_rel(fd, mode, persistent_id);