[PHP-DEV] PHP 4.0 Bug #9358 Updated: HAVE_RDEV not being checked before accessing field st_rdev From: sas <email protected>
Date: 02/21/01

ID: 9358
Updated by: sas
Reported By: amra <email protected>
Old-Status: Open
Status: Closed
Bug Type: Compile Failure
Assigned To:
Comments:

Thanks for your report. I've committed the changes.

Previous Comments:
---------------------------------------------------------------------------

[2001-02-20 16:15:56] amra <email protected>
st_rdev in struct stat is being access without any regards to HAVE_RDEV in the following files:

ext/standard/filestat.c
ext/standard/file.c

file.c has the following code:

#ifdef HAVE_ST_BLKSIZE
        add_assoc_long ( return_value, "rdev" , stat_sb.st_rdev );
        add_assoc_long ( return_value , "blksize" , stat_sb.st_blksize );
#endif

and filestat.c has the following code:

#ifdef HAVE_ST_BLKSIZE
                add_next_index_long(return_value, stat_sb->st_rdev);
#else
                add_next_index_long(return_value, -1);
#endif

in both cases, it should have been checking for HAVE_ST_RDEV before accessing the st_rdev field.

---------------------------------------------------------------------------

ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9358&edit=2

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>