Browse Source

CS

experimental/first_unicode_implementation
Arnaud Le Blanc 18 years ago
parent
commit
085b11a8cb
  1. 4
      ext/spl/spl_array.c

4
ext/spl/spl_array.c

@ -96,8 +96,8 @@ static void spl_array_rewind(spl_array_object *intern TSRMLS_DC);
static void spl_array_update_pos(spl_array_object* intern) /* {{{ */
{
Bucket *pos;
if ((pos = intern->pos)) {
Bucket *pos = intern->pos;
if (pos != NULL) {
intern->pos_h = pos->h;
}
} /* }}} */

Loading…
Cancel
Save