static inline int object_common1(UNSERIALIZE_PARAMETER, zend_class_entry *ce)
{
- long elements;
+ int elements;
elements = parse_iv2((*p) + 2, p);
yy37:
#line 419
{
- long elements = parse_iv(start + 2);
+ int elements = parse_iv(start + 2);
*p = YYCURSOR;
-static inline int parse_iv2(const unsigned char *p, const unsigned char **q)
+static inline long parse_iv2(const unsigned char *p, const unsigned char **q)
{
char cursor;
- int result = 0;
+ long result = 0;
int neg = 0;
switch (*p) {
return result;
}
-static inline int parse_iv(const unsigned char *p)
+static inline long parse_iv(const unsigned char *p)
{
return parse_iv2(p, NULL);
}