index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | lib/libalpm/alpm_list.c | 1 |
diff --git a/lib/libalpm/alpm_list.c b/lib/libalpm/alpm_list.c index beccc39c..a43f8211 100644 --- a/lib/libalpm/alpm_list.c +++ b/lib/libalpm/alpm_list.c @@ -420,6 +420,7 @@ int alpm_list_is_strin(const char *needle, alpm_list_t *haystack) if(lp->data && strcmp((const char *)lp->data, needle) == 0) { return(1); } + lp = lp->next; } return(0); } |