]> granicus.if.org Git - php/commitdiff
Fix missing parameter
authorAndras Elso <elso.andras@gmail.com>
Thu, 24 Jan 2013 16:12:13 +0000 (17:12 +0100)
committerStanislav Malyshev <stas@php.net>
Mon, 28 Jan 2013 01:11:14 +0000 (17:11 -0800)
main/streams/php_stream_plain_wrapper.h

index 4b3875577d5ae48503b0cb7b31c0bd10bd6847c9..d88b30c4791cf9bc5178a0ff9b494411919d21cd 100644 (file)
@@ -31,7 +31,7 @@ PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, cha
 #define php_stream_fopen(filename, mode, opened)       _php_stream_fopen((filename), (mode), (opened), 0 STREAMS_CC TSRMLS_CC)
 
 PHPAPI php_stream *_php_stream_fopen_with_path(char *filename, char *mode, char *path, char **opened_path, int options STREAMS_DC TSRMLS_DC);
-#define php_stream_fopen_with_path(filename, mode, path, opened)       _php_stream_fopen_with_path((filename), (mode), (path), (opened) STREAMS_CC TSRMLS_CC)
+#define php_stream_fopen_with_path(filename, mode, path, opened)       _php_stream_fopen_with_path((filename), (mode), (path), (opened), 0 STREAMS_CC TSRMLS_CC)
 
 PHPAPI php_stream *_php_stream_fopen_from_file(FILE *file, const char *mode STREAMS_DC TSRMLS_DC);
 #define php_stream_fopen_from_file(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_CC TSRMLS_CC)