Diff for /embedaddon/php/ext/standard/php_fopen_wrapper.c between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/05/29 12:34:43 version 1.1.1.3, 2013/07/22 01:32:05
Line 2 Line 2
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
    | PHP Version 5                                                        |     | PHP Version 5                                                        |
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
   | Copyright (c) 1997-2012 The PHP Group                                |   | Copyright (c) 1997-2013 The PHP Group                                |
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
    | This source file is subject to version 3.01 of the PHP license,      |     | This source file is subject to version 3.01 of the PHP license,      |
    | that is bundled with this package in the file LICENSE, and is        |     | that is bundled with this package in the file LICENSE, and is        |
Line 262  php_stream * php_stream_url_wrap_php(php_stream_wrappe Line 262  php_stream * php_stream_url_wrap_php(php_stream_wrappe
                                    *end;                                     *end;
                 long       fildes_ori;                  long       fildes_ori;
                 int                dtablesize;                  int                dtablesize;
   
                   if (strcmp(sapi_module.name, "cli")) {
                           if (options & REPORT_ERRORS) {
                                   php_error_docref(NULL TSRMLS_CC, E_WARNING, "Direct access to file descriptors is only available from command-line PHP");
                           }
                           return NULL;
                   }
   
                   if ((options & STREAM_OPEN_FOR_INCLUDE) && !PG(allow_url_include) ) {
                           if (options & REPORT_ERRORS) {
                                   php_error_docref(NULL TSRMLS_CC, E_WARNING, "URL file-access is disabled in the server configuration");
                           }
                           return NULL;
                   }
   
                 start = &path[3];                  start = &path[3];
                 fildes_ori = strtol(start, &end, 10);                  fildes_ori = strtol(start, &end, 10);

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>