aboutsummaryrefslogtreecommitdiff
path: root/examples/libpng_no_checksum
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2020-12-01 14:40:30 +0100
committervanhauser-thc <vh@thc.org>2020-12-01 14:40:30 +0100
commitc05e4efbe9b4e7d1ff078b7a392621f2ca7572e6 (patch)
treee005593b09169435cbad53c9990c6485e8fd9d06 /examples/libpng_no_checksum
parent8584f9d2b5de9687c518c672e471f4f8cd9166fa (diff)
downloadafl++-c05e4efbe9b4e7d1ff078b7a392621f2ca7572e6.tar.gz
renamed examples/ to utils/
Diffstat (limited to 'examples/libpng_no_checksum')
-rw-r--r--examples/libpng_no_checksum/libpng-nocrc.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/libpng_no_checksum/libpng-nocrc.patch b/examples/libpng_no_checksum/libpng-nocrc.patch
deleted file mode 100644
index 0a3793a0..00000000
--- a/examples/libpng_no_checksum/libpng-nocrc.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- pngrutil.c.orig 2014-06-12 03:35:16.000000000 +0200
-+++ pngrutil.c 2014-07-01 05:08:31.000000000 +0200
-@@ -268,7 +268,11 @@
- if (need_crc != 0)
- {
- crc = png_get_uint_32(crc_bytes);
-- return ((int)(crc != png_ptr->crc));
-+
-+ if (crc != png_ptr->crc)
-+ fprintf(stderr, "NOTE: CRC in the file is 0x%08x, change to 0x%08x\n", crc, png_ptr->crc);
-+
-+ return ((int)(1 != 1));
- }
-
- else