]> git.pld-linux.org Git - packages/php.git/blob - php-5.3.7-bug-51997.patch
move php.1 manual to -program (link to actual php-cli)
[packages/php.git] / php-5.3.7-bug-51997.patch
1 --- PHP_5_3/main/streams/streams.c      2011/06/05 21:44:34     311848
2 +++ PHP_5_3/main/streams/streams.c      2011/06/05 21:57:01     311849
3 @@ -1184,7 +1184,7 @@
4         }
5  
6         /* emulate forward moving seeks with reads */
7 -       if (whence == SEEK_CUR && offset > 0) {
8 +       if (whence == SEEK_CUR && offset >= 0) {
9                 char tmp[1024];
10                 size_t didread;
11                 while(offset > 0) {
This page took 0.026266 seconds and 3 git commands to generate.