diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-03-02 05:04:07 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-03-02 05:04:07 +0100 |
commit | 0a3ee53b50a10874b0ee0230b022b4277b5a6d96 (patch) | |
tree | d4be5d3311e88825d7b4d02d6fea2f499650b0ef /source3/lib | |
parent | 2d7a3748b2063c4137ee98ceca85361651ef8ee7 (diff) | |
download | samba-0a3ee53b50a10874b0ee0230b022b4277b5a6d96.tar.gz samba-0a3ee53b50a10874b0ee0230b022b4277b5a6d96.tar.bz2 samba-0a3ee53b50a10874b0ee0230b022b4277b5a6d96.zip |
Use samba3's own iconv implementation for now, until all changes are
merged.
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/iconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/iconv.c b/source3/lib/iconv.c index fa213a37c0..44500542f2 100644 --- a/source3/lib/iconv.c +++ b/source3/lib/iconv.c @@ -207,12 +207,12 @@ smb_iconv_t smb_iconv_open(const char *tocode, const char *fromcode) from = charsets; to = charsets; - ret = SMB_MALLOC_P(smb_iconv_t); + ret = SMB_MALLOC_P(struct smb_iconv_s); if (!ret) { errno = ENOMEM; return (smb_iconv_t)-1; } - memset(ret, 0, sizeof(smb_iconv_t)); + memset(ret, 0, sizeof(struct smb_iconv_s)); ret->from_name = SMB_STRDUP(fromcode); ret->to_name = SMB_STRDUP(tocode); |