-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix a crash on startup with a folder
entry without entries
#14629
Conversation
If having an empty folder is invalid, shouldn't we throw a serialization error or warning? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(only not signing off because of the GetValueForKey<T>
thing)
A warning might be nice, sure, but it's not well hooked up for that right now, and we do need the crash fix NOW. I feel like this is one of those "you aint gonna fix it" things. |
Hello @DHowett! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
🎉 Handy links: |
_Entries
was getting default constructed tonullptr
. We should be careful about that.Adds a test too, and fixes a regression in the local tests introduced in #13763.
Closes #14557