List version in start message
[idzebra-moved-to-github.git] / util / res.c
index cbc51ec..512a006 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: res.c,v 1.36 2004-06-15 08:05:54 adam Exp $
+/* $Id: res.c,v 1.37.2.1 2004-11-26 11:06:13 adam Exp $
    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
    Index Data Aps
 
@@ -20,7 +20,6 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
 */
 
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -32,7 +31,6 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #endif
 
 #include <zebrautl.h>
-#include <yaz/yaz-util.h>
 
 struct res_entry {
     char *name;
@@ -146,8 +144,6 @@ static void reread (Res r)
     assert (r);
     r->init = 1;
 
-    val_buf = (char*) xmalloc (val_max);
-
     if (!r->name)
        return; 
 
@@ -157,6 +153,7 @@ static void reread (Res r)
         logf (LOG_WARN|LOG_ERRNO, "Cannot open `%s'", r->name);
        return ;
     }
+    val_buf = (char*) xmalloc (val_max);
     while (1)
     {
         line = fgets (fr_buf, sizeof(fr_buf)-1, fr);