Unicode support cleanup

This commit is contained in:
Dmitry Stogov 2005-08-23 09:33:46 +00:00
parent 24743055a3
commit f4b8f4e958
11 changed files with 67 additions and 137 deletions

View file

@ -1691,7 +1691,7 @@ PHP_FUNCTION(getopt)
MAKE_STD_ZVAL(val);
if (optarg != NULL) {
ZVAL_STRING(val, optarg, 1);
ZVAL_RT_STRING(val, optarg, 1);
} else {
ZVAL_FALSE(val);
}