hjl / source-git / glibc

Forked from source-git/glibc 3 years ago
Clone

Blame iconv/gconv_close.c

Packit 6c4009
/* Release any resource associated with given conversion descriptor.
Packit 6c4009
   Copyright (C) 1997-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <stdlib.h>
Packit 6c4009
Packit 6c4009
#include <gconv_int.h>
Packit 6c4009
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
__gconv_close (__gconv_t cd)
Packit 6c4009
{
Packit 6c4009
  struct __gconv_step *srunp;
Packit 6c4009
  struct __gconv_step_data *drunp;
Packit 6c4009
  size_t nsteps;
Packit 6c4009
Packit 6c4009
  /* Free all resources by calling destructor functions and release
Packit 6c4009
     the implementations.  */
Packit 6c4009
  srunp = cd->__steps;
Packit 6c4009
  nsteps = cd->__nsteps;
Packit 6c4009
  drunp = cd->__data;
Packit 6c4009
  do
Packit 6c4009
    {
Packit 6c4009
      if (!(drunp->__flags & __GCONV_IS_LAST) && drunp->__outbuf != NULL)
Packit 6c4009
	free (drunp->__outbuf);
Packit 6c4009
    }
Packit 6c4009
  while (!((drunp++)->__flags & __GCONV_IS_LAST));
Packit 6c4009
Packit 6c4009
  /* Free the data allocated for the descriptor.  */
Packit 6c4009
  free (cd);
Packit 6c4009
Packit 6c4009
  /* Close the participating modules.  */
Packit 6c4009
  return __gconv_close_transform (srunp, nsteps);
Packit 6c4009
}