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 ef5695e commit e49f8e5Copy full SHA for e49f8e5
remote_config/src/desktop/remote_config_response.cc
@@ -94,7 +94,7 @@ void RemoteConfigResponse::MarkCompleted() {
94
const fbs::Response* body_fbs =
95
flatbuffers::GetRoot<fbs::Response>(builder.GetBufferPointer());
96
97
- if (body_fbs->entries()->size() > 0) {
+ if (body_fbs && body_fbs->entries() && body_fbs->entries()->size() > 0) {
98
entries_ = FlexbufferToVariant(body_fbs->entries_flexbuffer_root());
99
}
100
0 commit comments