Merge pull request #14003 from karroffel/dictionary-iterate-fix
fix Dictionary iteration
This commit is contained in:
commit
a88543c881
1 changed files with 3 additions and 1 deletions
|
@ -204,7 +204,9 @@ const Variant *Dictionary::next(const Variant *p_key) const {
|
|||
|
||||
if (p_key == NULL) {
|
||||
// caller wants to get the first element
|
||||
return &_p->variant_map.front().key();
|
||||
if (_p->variant_map.front())
|
||||
return &_p->variant_map.front().key();
|
||||
return NULL;
|
||||
}
|
||||
OrderedHashMap<Variant, Variant, _DictionaryVariantHash>::Element E = _p->variant_map.find(*p_key);
|
||||
|
||||
|
|
Loading…
Reference in a new issue