Changeset 319
- Timestamp:
- 06/02/2008 05:57:42 (6 months ago)
- Files:
-
- 1 modified
-
trunk/ext/php/phpext.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ext/php/phpext.c
r318 r319 415 415 case syck_seq_kind: 416 416 { 417 if ( strncmp(n->type_id, "php/array::", 11) == 0) {417 if (NULL != n->type_id && strncmp(n->type_id, "php/array::", 11) == 0) { 418 418 /* some class which implements ArrayAccess */ 419 419 size_t i; … … 485 485 case syck_map_kind: 486 486 { 487 if ( strncmp(n->type_id, "php/hash::", 10) == 0) {487 if (NULL != n->type_id && strncmp(n->type_id, "php/hash::", 10) == 0) { 488 488 /* some class which implements ArrayAccess */ 489 489 SYMID oid;