|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-27 13:46 UTC] website-pecl at interfasys dot ch
[2005-11-29 07:16 UTC] akorthaus at web dot de
[2005-11-30 14:46 UTC] free4cd at yahoo dot de
[2006-01-03 16:04 UTC] ilia at prohost dot org
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 05:00:01 2025 UTC |
Description: ------------ In fileinfo.c, in function fileinfo_object_new() there is a call to intern->std.guards property of an finfo_object object instance. The problem is that this function does not exist which cause build to fail. Reproduce code: --------------- This can be fixed by applying following patch: --- fileinfo.c~ 2005-11-25 00:12:38.000000000 +0100 +++ fileinfo.c 2005-11-26 18:18:55.373992536 +0100 @@ -103,7 +103,6 @@ intern = ecalloc(1, sizeof(struct finfo_object)); intern->zo.ce = class_type; intern->zo.properties = NULL; - intern->std.guards = NULL; intern->ptr = NULL; retval.handle = zend_objects_store_put(intern, finfo_objects_dtor, NULL, NULL TSRMLS_CC);