Set T_arg_type to default string type if we were not able to determine

it from the args.
This commit is contained in:
Andrei Zmievski 2006-08-14 20:40:26 +00:00
parent 62f04bba34
commit ea7ab72fe7

View File

@ -975,6 +975,10 @@ static int zend_parse_va_args(int num_args, char *type_spec, va_list *va, int fl
break;
}
}
if (T_arg_type == -1) {
T_arg_type == ZEND_STR_TYPE;
}
}
i = 0;