summaryrefslogtreecommitdiff
path: root/tests/tga/bug00248.c
blob: b7c7725c07c73bb132ee0f441d3b527b06286319 (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("tga/bug00248.tga");
    im = gdImageCreateFromTga(fp);
    gdTestAssert(im == NULL);
    fclose(fp);
    return gdNumFailures();
}