diff --git a/src/strlist.c b/src/strlist.c index f0c616e..d54ed06 100644 --- a/src/strlist.c +++ b/src/strlist.c @@ -301,7 +301,6 @@ size_t strlist_count(struct StrList *pStrList) { */ void strlist_set(struct StrList **pStrList, size_t index, char *value) { char *tmp = NULL; - char *item = NULL; if (*pStrList == NULL || index > strlist_count(*pStrList)) { return; }