summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/tests/gd2/php_bug_72339.c
diff options
context:
space:
mode:
authorDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
committerDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
commitc6101f91d071883b48b1b4b51e5eba0f36d9a78d (patch)
tree1bf7f5a881d7a4f5c5bf59d0b2821943dd822372 /Build/source/libs/gd/libgd-src/tests/gd2/php_bug_72339.c
parent07ee7222e389b0777456b427a55c22d0e6ffd267 (diff)
French translation for tlmgr updated
git-svn-id: svn://tug.org/texlive/trunk@57912 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/gd/libgd-src/tests/gd2/php_bug_72339.c')
-rw-r--r--Build/source/libs/gd/libgd-src/tests/gd2/php_bug_72339.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/Build/source/libs/gd/libgd-src/tests/gd2/php_bug_72339.c b/Build/source/libs/gd/libgd-src/tests/gd2/php_bug_72339.c
deleted file mode 100644
index 8217c87c1d5..00000000000
--- a/Build/source/libs/gd/libgd-src/tests/gd2/php_bug_72339.c
+++ /dev/null
@@ -1,36 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include "gd.h"
-
-#include "gdtest.h"
-
-int main()
-{
- gdImagePtr im;
- FILE *fp;
- int i;
- const char header[] = {
- 0x00, 0x02,
- 0x00, 0x01,
- 0x00, 0x01,
- 0x00, 0x40,
- 0x00, 0x02,
- 0x54, 0xA0,
- 0x5B, 0x00
- };
-
- /* we're creating the test image dynamically, due to its size */
- fp = gdTestTempFp();
- fwrite(header, sizeof(header[0]), sizeof(header), fp);
- for (i = 0; i < 0x4000000; i++) {
- fputc(0x41, fp);
- }
- rewind(fp);
-
- im = gdImageCreateFromGd2(fp);
- fclose(fp);
-
- gdTestAssertMsg(im == NULL, "Image should have failed to be loaded\n");
-
- return gdNumFailures();
-}