xbps_sort_pkg_deps: use TAILQ_FOREACH_SAFE.

This commit is contained in:
Juan RP 2011-01-30 14:42:17 +01:00
parent 2492d98d13
commit bdd48de67d

View File

@ -61,9 +61,9 @@ static TAILQ_HEAD(pkgdep_head, pkgdep) pkgdep_list =
static struct pkgdep * static struct pkgdep *
pkgdep_find(const char *name) pkgdep_find(const char *name)
{ {
struct pkgdep *pd = NULL; struct pkgdep *pd = NULL, *pd_new = NULL;
TAILQ_FOREACH(pd, &pkgdep_list, pkgdep_entries) { TAILQ_FOREACH_SAFE(pd, &pkgdep_list, pkgdep_entries, pd_new) {
if (strcmp(pd->name, name) == 0) if (strcmp(pd->name, name) == 0)
return pd; return pd;
if (pd->d == NULL) if (pd->d == NULL)
@ -79,10 +79,10 @@ pkgdep_find(const char *name)
static ssize_t static ssize_t
pkgdep_find_idx(const char *name) pkgdep_find_idx(const char *name)
{ {
struct pkgdep *pd; struct pkgdep *pd, *pd_new;
ssize_t idx = 0; ssize_t idx = 0;
TAILQ_FOREACH(pd, &pkgdep_list, pkgdep_entries) { TAILQ_FOREACH_SAFE(pd, &pkgdep_list, pkgdep_entries, pd_new) {
if (strcmp(pd->name, name) == 0) if (strcmp(pd->name, name) == 0)
return idx; return idx;
if (pd->d == NULL) if (pd->d == NULL)