Blame SOURCES/netpbm-test.patch

294826
diff -urNp a/converter/ppm/winicontoppm.c b/converter/ppm/winicontoppm.c
294826
--- a/converter/ppm/winicontoppm.c	2021-08-16 15:01:10.340119568 +0200
294826
+++ b/converter/ppm/winicontoppm.c	2021-08-16 15:02:02.414864550 +0200
294826
@@ -180,13 +180,13 @@ readU1String (FILE *       const ifP,
294826
         pm_error("out of memory");
294826
 
294826
     rc = fread(string, sizeof(u1), length, ifP);
294826
-    if (rc < length) {
294826
+ /*   if (rc < length) {
294826
         if (feof(ifP))
294826
             pm_error("File read failed.  Premature end of file");
294826
         else
294826
             pm_error("File read failed.  Errno=%d (%s)",
294826
                      errno, strerror(errno));
294826
-    }
294826
+    }*/
294826
 
294826
     string[length] = 0;
294826
     fileOffset += length * sizeof(u1);