summaryrefslogtreecommitdiff
path: root/src/charset/codecs/codec_8859.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-12-14 23:14:09 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-12-14 23:14:09 +0000
commit8e48b931091cbc99abeffacc7af80f363495ec23 (patch)
tree8aec6c47ec54e425884f646b08a9e28b216b3ebe /src/charset/codecs/codec_8859.c
parenta4e3ccd6abb97d05121635112bdca44fc0e440b0 (diff)
downloadlibparserutils-8e48b931091cbc99abeffacc7af80f363495ec23.tar.gz
libparserutils-8e48b931091cbc99abeffacc7af80f363495ec23.tar.bz2
Remove client allocation function.
Diffstat (limited to 'src/charset/codecs/codec_8859.c')
-rw-r--r--src/charset/codecs/codec_8859.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/charset/codecs/codec_8859.c b/src/charset/codecs/codec_8859.c
index d323ca0..0ab4c32 100644
--- a/src/charset/codecs/codec_8859.c
+++ b/src/charset/codecs/codec_8859.c
@@ -64,7 +64,6 @@ typedef struct charset_8859_codec {
static bool charset_8859_codec_handles_charset(const char *charset);
static parserutils_error charset_8859_codec_create(const char *charset,
- parserutils_alloc alloc, void *pw,
parserutils_charset_codec **codec);
static parserutils_error charset_8859_codec_destroy(
parserutils_charset_codec *codec);
@@ -123,15 +122,12 @@ bool charset_8859_codec_handles_charset(const char *charset)
* Create an ISO-8859-n codec
*
* \param charset The charset to read from / write to
- * \param alloc Memory (de)allocation function
- * \param pw Pointer to client-specific private data (may be NULL)
* \param codec Pointer to location to receive codec
* \return PARSERUTILS_OK on success,
* PARSERUTILS_BADPARM on bad parameters,
* PARSERUTILS_NOMEM on memory exhausion
*/
parserutils_error charset_8859_codec_create(const char *charset,
- parserutils_alloc alloc, void *pw,
parserutils_charset_codec **codec)
{
uint32_t i;
@@ -149,7 +145,7 @@ parserutils_error charset_8859_codec_create(const char *charset,
assert(table != NULL);
- c = alloc(NULL, sizeof(charset_8859_codec), pw);
+ c = malloc(sizeof(charset_8859_codec));
if (c == NULL)
return PARSERUTILS_NOMEM;