Commit 8e350548 authored by Ge Jun's avatar Ge Jun

minor changes

parent 515a8d0b
...@@ -54,8 +54,6 @@ int PeriodicNamingService::RunNamingService( ...@@ -54,8 +54,6 @@ int PeriodicNamingService::RunNamingService(
return -1; return -1;
} }
} }
CHECK(false);
return -1;
} }
} // namespace brpc } // namespace brpc
...@@ -1029,9 +1029,6 @@ int Server::Start(const char* ip_str, PortRange port_range, ...@@ -1029,9 +1029,6 @@ int Server::Start(const char* ip_str, PortRange port_range,
} }
int Server::Stop(int timeout_ms) { int Server::Stop(int timeout_ms) {
if (_status != RUNNING) {
return -1;
}
if (_status != RUNNING) { if (_status != RUNNING) {
return -1; return -1;
} }
...@@ -1375,7 +1372,10 @@ void Server::RemoveMethodsOf(google::protobuf::Service* service) { ...@@ -1375,7 +1372,10 @@ void Server::RemoveMethodsOf(google::protobuf::Service* service) {
full_name_wo_ns.append(md->name()); full_name_wo_ns.append(md->name());
_method_map.erase(full_name_wo_ns); _method_map.erase(full_name_wo_ns);
} }
if (mp == NULL) {
LOG(ERROR) << "Fail to find method=" << md->full_name();
continue;
}
if (mp->http_url) { if (mp->http_url) {
butil::StringSplitter at_sp(mp->http_url->c_str(), '@'); butil::StringSplitter at_sp(mp->http_url->c_str(), '@');
for (; at_sp; ++at_sp) { for (; at_sp; ++at_sp) {
...@@ -1411,7 +1411,7 @@ void Server::RemoveMethodsOf(google::protobuf::Service* service) { ...@@ -1411,7 +1411,7 @@ void Server::RemoveMethodsOf(google::protobuf::Service* service) {
delete mp->http_url; delete mp->http_url;
} }
if (mp != NULL && mp->own_method_status) { if (mp->own_method_status) {
delete mp->status; delete mp->status;
} }
_method_map.erase(md->full_name()); _method_map.erase(md->full_name());
......
...@@ -251,7 +251,6 @@ void TsPacket::Reset() { ...@@ -251,7 +251,6 @@ void TsPacket::Reset() {
_transport_scrambling_control = TS_SCRAMBLED_DISABLED; _transport_scrambling_control = TS_SCRAMBLED_DISABLED;
_adaptation_field_control = TS_AF_RESERVED; _adaptation_field_control = TS_AF_RESERVED;
_continuity_counter = 0; _continuity_counter = 0;
_adaptation_field = NULL;
_payload = NULL; _payload = NULL;
_modified = false; _modified = false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment