X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=isamc%2Fisamc.c;h=d5a1bd1febaa5b0dca5fbdea43c7175781bfe433;hp=842befafe365cdb2c3da97ad5f10271c8437642a;hb=3726bf6622da6a8b983bb4cbb7d654e84c3216d7;hpb=0af5d3854fbf1ca317b8dc3cf3b478728f6d4d5a diff --git a/isamc/isamc.c b/isamc/isamc.c index 842befa..d5a1bd1 100644 --- a/isamc/isamc.c +++ b/isamc/isamc.c @@ -4,7 +4,11 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: isamc.c,v $ - * Revision 1.18 1999-06-30 09:08:23 adam + * Revision 1.19 1999-07-14 10:59:27 adam + * Changed functions isc_getmethod, isams_getmethod. + * Improved fatal error handling (such as missing EXPLAIN schema). + * + * Revision 1.18 1999/06/30 09:08:23 adam * Added coder to reset. * * Revision 1.17 1999/05/26 07:49:14 adam @@ -91,8 +95,9 @@ static void init_fc (ISAMC is, int cat); #define SMALL_TEST 0 -ISAMC_M isc_getmethod (void) +void isc_getmethod (ISAMC_M m) { + static struct ISAMC_filecat_s def_cat[] = { #if SMALL_TEST { 32, 28, 0, 3 }, @@ -106,7 +111,6 @@ ISAMC_M isc_getmethod (void) { 32768, 32000, 31000, 0 }, #endif }; - ISAMC_M m = (ISAMC_M) xmalloc (sizeof(*m)); m->filecat = def_cat; m->code_start = NULL; @@ -119,11 +123,8 @@ ISAMC_M isc_getmethod (void) m->debug = 1; m->max_blocks_mem = 10; - - return m; } - ISAMC isc_open (BFiles bfs, const char *name, int writeflag, ISAMC_M method) { ISAMC is;