as-cache-builder: Cope with no YAML documents #25
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
It's possible that a suite/arch will have no packages with AppStream; we
shouldn't crash in that case.
g_strstr_len will return NULL if the string we're searching for ("---")
is not found - this will be the case if there are only the headers and
no further documents. In that case we should read to the end of the
file.
While doing this, I made this bit (IMO) easier to read by renaming some variables and adding comments, hope you like that.