diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-01-05 12:52:54 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-01-05 12:52:54 +0100 |
commit | ccd26d2017c7c9a83ef7d586ae039008c23ddcec (patch) | |
tree | 9a5d08a99c536bb97e2e03e4b1db13b4a80f168d | |
parent | a1d106ab3e04b2c3fde4fca23ea72551a892efac (diff) |
sfeed: add note of truncation of tags (not an issue)
-rw-r--r-- | sfeed.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -612,7 +612,7 @@ xml_handler_start_element(XMLParser *p, const char *name, size_t namelen) if(ctx.tag[0] != '\0') return; /* in item */ - strlcpy(ctx.tag, name, sizeof(ctx.tag)); + strlcpy(ctx.tag, name, sizeof(ctx.tag)); /* NOTE: truncation ignored */ ctx.taglen = namelen; ctx.tagid = gettag(ctx.item.feedtype, ctx.tag, ctx.taglen); if(ctx.tagid == TagUnknown) |