Searched refs:port_buf (Results 1 – 1 of 1) sorted by relevance
94 char port_buf[6]; in php_url_parse_ex2() local184 memcpy(port_buf, p, (pp - p)); in php_url_parse_ex2()185 port_buf[pp - p] = '\0'; in php_url_parse_ex2()186 port = ZEND_STRTOL(port_buf, &end, 10); in php_url_parse_ex2()187 if (port >= 0 && port <= 65535 && end != port_buf) { in php_url_parse_ex2()250 memcpy(port_buf, p, (e - p)); in php_url_parse_ex2()251 port_buf[e - p] = '\0'; in php_url_parse_ex2()252 port = ZEND_STRTOL(port_buf, &end, 10); in php_url_parse_ex2()253 if (port >= 0 && port <= 65535 && end != port_buf) { in php_url_parse_ex2()
Completed in 4 milliseconds