~ubuntu-branches/ubuntu/utopic/libcddb/utopic

« back to all changes in this revision

Viewing changes to lib/cddb_util.c

  • Committer: Bazaar Package Importer
  • Author(s): Eugene V. Lyubimkin
  • Date: 2010-05-09 18:37:53 UTC
  • mto: (3.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100509183753-30mrr89p0i02fifx
ImportĀ upstreamĀ versionĀ 1.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
    $Id: cddb_util.c,v 1.6 2005/04/22 21:43:23 airborne Exp $
 
2
    $Id: cddb_util.c,v 1.7 2006/10/15 06:52:50 airborne Exp $
3
3
 
4
4
    Copyright (C) 2004, 2005 Kris Verbeeck <airborne@advalvas.be>
5
5
 
32
32
int cddb_str_iconv(iconv_t cd, ICONV_CONST char *in, char **out)
33
33
{
34
34
#ifdef HAVE_ICONV_H
35
 
    int inlen, outlen, buflen, rc;
 
35
    size_t inlen, outlen;
 
36
    int buflen, rc;
36
37
    int len;                    /* number of chars in buffer */
37
38
    char *buf;
38
39