summaryrefslogtreecommitdiff
path: root/tests/gif/bug00060.c
blob: 7a3316a2dc5e59d396dc104a58bc328749637fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include "gd.h"
#include "gdtest.h"


int main()
{
	gdImagePtr im;
	FILE *fp = gdTestFileOpen("gif/bug00060.gif");
	im = gdImageCreateFromGif(fp);
	fclose(fp);
	gdImageDestroy(im);
	return 0;
}