pike.git
/
src
/
modules
/
_WhiteFish
/
whitefish.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/_WhiteFish/whitefish.c:1:
#include "global.h" #include "stralloc.h" #include "global.h"
-
RCSID("$Id: whitefish.c,v 1.
6
2001/05/
22
14
:
03
:
31
per Exp $");
+
RCSID("$Id: whitefish.c,v 1.
7
2001/05/
23
10
:
58
:
00
per Exp $");
#include "pike_macros.h" #include "interpret.h" #include "program.h" #include "program_id.h" #include "object.h" #include "operators.h" #include "array.h" #include "module_support.h" #include "config.h"
pike.git/src/modules/_WhiteFish/whitefish.c:20:
/* must be included last */ #include "module_magic.h" struct tofree { Blob **blobs; int nblobs; struct object *res; };
-
void free_stuff( void *_t )
+
static
void free_stuff( void *_t )
{ struct tofree *t= (struct tofree *)_t; int i; if( t->res ) free_object( t->res ); for( i = 0; i<t->nblobs; i++ ) wf_blob_free( t->blobs[i] ); free( t ); } static struct object *low_do_query_merge( Blob **blobs,