summaryrefslogtreecommitdiff
path: root/test/regression/cscodec-segv.c
blob: ad9894ac94711eb91e4a081937a8af123592add5 (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
29
30
31
32
33
34
35
36
37
#include <stdio.h>

#include <hubbub/hubbub.h>

#include "charset/codec.h"

#include "testutils.h"

static void *myrealloc(void *ptr, size_t len, void *pw)
{
	UNUSED(pw);

	return realloc(ptr, len);
}

int main(int argc, char **argv)
{
	hubbub_charsetcodec *codec;

	if (argc != 2) {
		printf("Usage: %s <aliases_file>\n", argv[0]);
		return 1;
	}

	assert(hubbub_initialise(argv[1], myrealloc, NULL) == HUBBUB_OK);

	codec = hubbub_charsetcodec_create("ISO-8859-1", myrealloc, NULL);
	assert(codec != NULL);

	hubbub_charsetcodec_destroy(codec);

	assert(hubbub_finalise(myrealloc, NULL) == HUBBUB_OK);

	printf("PASS\n");

	return 0;
}