We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 292c799 commit 8d73b86Copy full SHA for 8d73b86
remote_config/src/desktop/remote_config_response.cc
@@ -95,6 +95,9 @@ void RemoteConfigResponse::MarkCompleted() {
95
return;
96
}
97
const flatbuffers::FlatBufferBuilder& builder = parser_->builder_;
98
+ if (builder.GetSize() == 0 || builder.GetBufferPointer() == nullptr) {
99
+ return;
100
+ }
101
const fbs::Response* body_fbs =
102
flatbuffers::GetRoot<fbs::Response>(builder.GetBufferPointer());
103
0 commit comments