summaryrefslogtreecommitdiff
path: root/tests/gd2/gd2_read_corrupt.c
blob: a6363165c2f107a084a55576a5e814ef265afc70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* Just try to read the invalid gd2 image & not crash. */
#include "gd.h"
#include <stdio.h>
#include <stdlib.h>
#include "gdtest.h"

int main()
{
	gdImagePtr im;
	FILE *fp;

	fp = gdTestFileOpen2("gd2", "invalid_header.gd2");

	if (!fp) {
		gdTestErrorMsg("failed, cannot open file: %s\n", "invalid_header.gd2");
		return 1;
	}
	im = gdImageCreateFromGd2(fp);
	fclose(fp);

	if (im != NULL) {
		gdTestErrorMsg("image should have failed to be loaded\n");
		gdImageDestroy(im);
		return 1;
	} else {
		return 0;
	}
}