[PHP-DEV] [PATCH] Streams "file://" bug

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default [PHP-DEV] Re: [PATCH] Streams "file://" bug

    Sara Golemon wrote:
    > Predecremet vs. postdecrement would make no difference in that context.
    > It's very likely your compiler. What specific error are you seeing?
    The compiler is decrementing a char** pointer instead of a char* pointer.
    > P.S. - What's with the ZendEngine1 reference? main/streams/streams.c is
    > only in PHP5 (and thus would be using ZendEngine2)
    I don't know why the ZendEngine1 is appearing at the top of my patch
    file. I'm using PHP5 with ZendEngine2 and I just run "cvs -d
    :pserver:cvsread@cvs.php.net:/repository diff php-src"...
    I think it's just cosmetic...

    Andi has pointed out that (*path_for_open)++ will make it.

    Best Regards,

    Cristiano Duarte

    --
    PHP Internals - PHP Runtime Development Mailing List
    To unsubscribe, visit: [url]http://www.php.net/unsub.php[/url]

    Cristiano Duarte Guest

  2. Similar Questions and Discussions

    1. Using CIFS/NFS Mounted Drives for "streams" directory
      We have multiple FMS Origin server(s) . We plan to use a NAS device, where content is directly uploaded to it. This content will be shared across...
    2. Where is Patch File "Ac60PrP1.msp" located?
      For WIN XP, I first installed separate Acrobat Pro 6 Upgrade and then 6.01 patch file, and then installed "CS Suite" (without Acrobat module). I...
    3. [PHP-DEV] [PATCH] Streams "file://" bug
      > The current implementation of file:// support under Predecremet vs. postdecrement would make no difference in that context. It's very likely...
    4. [PHP-DEV] [PATCH] Streams "file://" bug
      --------------060003080607080602080609 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi all, The...
    5. How to make the "search text" feature work with non "txt" file
      On Fri, 27 Jun 2003 07:19:23 -0700, "Juergen" <anhorn@bktel.com> wrote: See MVP Doug Knox' comments and fix here:...
  3. #2

    Default Re: [PHP-DEV] [PATCH] Streams "file://" bug

    Andi Gutmans wrote:
    > This should be changed to (*path_for_open)++
    In fact, it's "(*path_for_open)--" :-)

    Cristiano Duarte

    --
    PHP Internals - PHP Runtime Development Mailing List
    To unsubscribe, visit: [url]http://www.php.net/unsub.php[/url]

    Cristiano Duarte Guest

  4. #3

    Default Re: [PHP-DEV] [PATCH] Streams "file://" bug

    :)

    At 12:34 PM 11/23/2003 -0200, Cristiano Duarte wrote:
    >Andi Gutmans wrote:
    >>This should be changed to (*path_for_open)++
    >In fact, it's "(*path_for_open)--" :-)
    >
    >Cristiano Duarte
    >
    >--
    >PHP Internals - PHP Runtime Development Mailing List
    >To unsubscribe, visit: [url]http://www.php.net/unsub.php[/url]
    --
    PHP Internals - PHP Runtime Development Mailing List
    To unsubscribe, visit: [url]http://www.php.net/unsub.php[/url]

    Andi Gutmans Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139