summaryrefslogtreecommitdiff
path: root/test/regression/cscodec-segv.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/regression/cscodec-segv.c')
-rw-r--r--test/regression/cscodec-segv.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/regression/cscodec-segv.c b/test/regression/cscodec-segv.c
new file mode 100644
index 0000000..ad9894a
--- /dev/null
+++ b/test/regression/cscodec-segv.c
@@ -0,0 +1,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;
+}