Skip to content

Instantly share code, notes, and snippets.

@KalleZ
Created August 10, 2016 11:37
Show Gist options
  • Save KalleZ/b5b8d47f3d523c9e806188c85aa10c68 to your computer and use it in GitHub Desktop.
Save KalleZ/b5b8d47f3d523c9e806188c85aa10c68 to your computer and use it in GitHub Desktop.
ext/interbase/interbase.c: if (le->type != le_index_ptr) {
ext/interbase/interbase.c: new_index_ptr.type = le_index_ptr;
ext/oci8/oci8.c: if (le->type == le_index_ptr) {
ext/oci8/oci8.c: new_le.type = le_index_ptr;
ext/odbc/php_odbc.c: if (index_ptr->type != le_index_ptr) {
ext/odbc/php_odbc.c: new_index_ptr.type = le_index_ptr;
ext/pgsql/pgsql.c: if (index_ptr->type != le_index_ptr) {
ext/pgsql/pgsql.c: new_index_ptr.type = le_index_ptr;
main/main.c: le_index_ptr = zend_register_list_destructors_ex(NULL, NULL, "index pointer", 0);
Zend/zend_list.c:ZEND_API int le_index_ptr;
Zend/zend_list.h:extern ZEND_API int le_index_ptr; /* list entry type for index pointers */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment