index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2010-06-27 21:44:36 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-07-07 07:24:57 -0500 |
commit | 60de8ec932984f1374501c3f11ad1bcfba5c7d5c (patch) | |
tree | 9b81e0d4f8fce2df996ecc5cef4010dcefa61ec3 /lib/libalpm/trans.c | |
parent | 686b8c146398c5ba9feee2c1fa10bf9e598b2ce8 (diff) |
-rw-r--r-- | lib/libalpm/trans.c | 3 |
diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c index c042f099..523f33b8 100644 --- a/lib/libalpm/trans.c +++ b/lib/libalpm/trans.c @@ -324,8 +324,7 @@ static int grep(const char *fn, const char *needle) while(!feof(fp)) { char line[1024]; int sline = sizeof(line)-1; - fgets(line, sline, fp); - if(feof(fp)) { + if(fgets(line, sline, fp) == NULL) { continue; } if(strstr(line, needle)) { |