Index: branches/2017Q1/multimedia/vdr-plugin-epgsearch/files/patch-clang40 =================================================================== --- branches/2017Q1/multimedia/vdr-plugin-epgsearch/files/patch-clang40 (nonexistent) +++ branches/2017Q1/multimedia/vdr-plugin-epgsearch/files/patch-clang40 (revision 433028) @@ -0,0 +1,22 @@ +--- createcats.c.orig 2012-03-22 18:00:19 UTC ++++ createcats.c +@@ -64,7 +64,7 @@ class cReadLine { + + char *cReadLine::Read(FILE *f) + { +- if (fgets(buffer, sizeof(buffer), f) > 0) { ++ if (fgets(buffer, sizeof(buffer), f)) { + int l = strlen(buffer) - 1; + if (l >= 0 && buffer[l] == '\n') + buffer[l] = 0; +--- epgsearchext.c.orig 2012-03-22 18:00:19 UTC ++++ epgsearchext.c +@@ -1497,7 +1503,7 @@ bool cSearchExts::Load(const char *FileN + int line = 0; + char buffer[MAXPARSEBUFFER]; + result = true; +- while (fgets(buffer, sizeof(buffer), f) > 0) { ++ while (fgets(buffer, sizeof(buffer), f)) { + line++; + char *p = strchr(buffer, '#'); + if (p == buffer) *p = 0; Property changes on: branches/2017Q1/multimedia/vdr-plugin-epgsearch/files/patch-clang40 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2017Q1 =================================================================== --- branches/2017Q1 (revision 433027) +++ branches/2017Q1 (revision 433028) Property changes on: branches/2017Q1 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r432968