diff options
Diffstat (limited to 'ext/repo_repomdxml.c')
-rw-r--r-- | ext/repo_repomdxml.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/repo_repomdxml.c b/ext/repo_repomdxml.c index 5a2bb47..9f466dd 100644 --- a/ext/repo_repomdxml.c +++ b/ext/repo_repomdxml.c @@ -300,6 +300,7 @@ startElement(void *userData, const char *name, const char **atts) const char *href = find_attr("href", atts); if (href) repodata_set_str(pd->data, pd->rdhandle, REPOSITORY_REPOMD_LOCATION, href); + break; } case STATE_CHECKSUM: case STATE_OPENCHECKSUM: @@ -311,8 +312,8 @@ startElement(void *userData, const char *name, const char **atts) fprintf(stderr, "Unknown checksum type: %d: %s\n", (unsigned int)XML_GetCurrentLineNumber(*pd->parser), type ? type : "NULL"); exit(1); } + break; } - break; default: break; } |