Fix crash bug in urlencode().

This commit is contained in:
Sebastian Bergmann 2001-06-19 15:20:50 +00:00
parent 0c164128f8
commit 615cf785c1

View File

@ -300,7 +300,6 @@ PHP_FUNCTION(urlencode)
}
str = php_url_encode((*arg)->value.str.val, (*arg)->value.str.len, &str_len);
RETVAL_STRINGL(str, str_len, 0);
efree(str);
}
/* }}} */