mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-7.4'
* PHP-7.4: Handle bindto error
This commit is contained in:
commit
ab9d10d023
2 changed files with 20 additions and 0 deletions
16
ext/standard/tests/network/bindto.phpt
Normal file
16
ext/standard/tests/network/bindto.phpt
Normal file
|
@ -0,0 +1,16 @@
|
|||
--TEST--
|
||||
Test invalid bindto
|
||||
--FILE--
|
||||
<?php
|
||||
$ctx = stream_context_create([
|
||||
'socket' => [
|
||||
'bindto' => 'invalid',
|
||||
],
|
||||
]);
|
||||
$fp = stream_socket_client(
|
||||
'tcp://www.' . str_repeat('x', 100) . '.com:80',
|
||||
$errno, $errstr, 30, STREAM_CLIENT_CONNECT, $ctx
|
||||
);
|
||||
?>
|
||||
--EXPECTF--
|
||||
Warning: stream_socket_client(): Unable to connect to tcp://%s:80 (Failed to parse address "invalid") in %s on line %d
|
|
@ -747,6 +747,10 @@ static inline int php_tcp_sockop_connect(php_stream *stream, php_netstream_data_
|
|||
return -1;
|
||||
}
|
||||
bindto = parse_ip_address_ex(Z_STRVAL_P(tmpzval), Z_STRLEN_P(tmpzval), &bindport, xparam->want_errortext, &xparam->outputs.error_text);
|
||||
if (bindto == NULL) {
|
||||
efree(host);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef SO_BROADCAST
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue