Commit 04422b31 by xiongziliang

完善非法url提示:#2129

parent f05a9501
......@@ -220,7 +220,7 @@ void splitUrl(const std::string &url, std::string &host, uint16_t &port) {
checkHost(host);
return;
}
CHECK(pos > 0, "invalid url:", port);
CHECK(pos > 0, "invalid url:", url);
CHECK(sscanf(url.data() + pos + 1, "%" SCNu16, &port) == 1, "parse port from url failed:", url);
host = url.substr(0, pos);
checkHost(host);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论