]> granicus.if.org Git - php/commitdiff
Access the struct directly here
authorMarcus Boerger <helly@php.net>
Sat, 19 Apr 2003 19:06:52 +0000 (19:06 +0000)
committerMarcus Boerger <helly@php.net>
Sat, 19 Apr 2003 19:06:52 +0000 (19:06 +0000)
ext/standard/assert.c

index 3f4e5c396ac8907a15a65f8ccc98f401ac8e617b..1445ce62ea6fa0b9bb0e53d180e586d6cc6f9e6b 100644 (file)
@@ -77,7 +77,7 @@ PHP_INI_END()
 
 static void php_assert_init_globals(zend_assert_globals *assert_globals_p TSRMLS_DC)
 {
-       ASSERTG(callback) = NULL;
+       assert_globals_p->callback = NULL;
 }
 
 PHP_MINIT_FUNCTION(assert)