1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00

Fixed bug #44440 (st_blocks undefined under BeOS)

This commit is contained in:
Felipe Pena
2008-03-15 10:28:53 +00:00
parent 655610a5bb
commit 27f2d54784
+3
View File
@@ -234,6 +234,9 @@ static int php_stream_memory_stat(php_stream *stream, php_stream_statbuf *ssb TS
#ifndef PHP_WIN32
ssb->sb.st_blksize = -1;
#endif
#if !defined(PHP_WIN32) && !defined(__BEOS__)
ssb->sb.st_blocks = -1;
#endif