X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=php_psi.h;h=71b554e3937ca33ba61bc4d6bcbec02ec6069678;hp=160970003677ee7b89bfe3e0ff74f3d63f9c0d29;hb=5bf418f9c241e653f2e1825eef2ce850cf65db96;hpb=9bcb1df0786a8193d65949c857baaba2f4296e84 diff --git a/php_psi.h b/php_psi.h index 1609700..71b554e 100644 --- a/php_psi.h +++ b/php_psi.h @@ -59,6 +59,9 @@ static inline psi_object *PSI_OBJ(zval *zv, zend_object *zo) { if (zv) { zo = Z_OBJ_P(zv); } + if (!zo) { + return NULL; + } return (void *) (((char *) zo) - zo->handlers->offset); } @@ -69,6 +72,7 @@ PHP_PSI_API zend_class_entry *psi_object_get_class_entry(); ZEND_BEGIN_MODULE_GLOBALS(psi) char *engine; char *directory; + char *search_path; struct psi_context *context; ZEND_END_MODULE_GLOBALS(psi);