From: Jelmer Vernooij Date: Sun, 19 Oct 2008 11:52:56 +0000 (+0200) Subject: Just call talloc_free directly rather than through a helper function. X-Git-Tag: samba-4.0.0alpha6~769^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=069437a2faf6a8811ba511f765c5d133ed0b97a9;p=thirdparty%2Fsamba.git Just call talloc_free directly rather than through a helper function. --- diff --git a/lib/util/params.c b/lib/util/params.c index c03edec272c..7af7ac73481 100644 --- a/lib/util/params.c +++ b/lib/util/params.c @@ -105,11 +105,6 @@ static int mygetc(myFILE *f) return (int)( *(f->p++) & 0x00FF ); } -static void myfile_close(myFILE *f) -{ - talloc_free(f); -} - /* -------------------------------------------------------------------------- ** * Functions... */ @@ -565,7 +560,7 @@ bool pm_process( const char *FileName, if( NULL == InFile->bufr ) { DEBUG(0,("%s memory allocation failure.\n", func)); - myfile_close(InFile); + talloc_free(InFile); return( false ); } result = Parse( InFile, sfunc, pfunc, userdata ); @@ -573,7 +568,7 @@ bool pm_process( const char *FileName, InFile->bSize = 0; } - myfile_close(InFile); + talloc_free(InFile); if( !result ) /* Generic failure. */ {