Blame SOURCES/netpbm-test.patch

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