Fixed leak in rset_dup. It leaked rs->control handles.
[idzebra-moved-to-github.git] / rset / rstemp.c
index 338e697..aa886be 100644 (file)
@@ -1,5 +1,5 @@
-/* $Id: rstemp.c,v 1.65 2005-06-14 20:28:54 adam Exp $
-   Copyright (C) 1995-2005
+/* $Id: rstemp.c,v 1.67 2006-06-06 21:01:31 adam Exp $
+   Copyright (C) 1995-2006
    Index Data ApS
 
 This file is part of the Zebra server.
@@ -81,8 +81,8 @@ struct rfd_private {
 static int log_level = 0;
 static int log_level_initialized = 0;
 
-RSET rstemp_create(NMEM nmem, struct rset_key_control *kcontrol,
-                   int scope, const char *temp_path, TERMID term)
+RSET rset_create_temp(NMEM nmem, struct rset_key_control *kcontrol,
+                      int scope, const char *temp_path, TERMID term)
 {
     RSET rnew = rset_create_base(&control, nmem, kcontrol, scope, term,
                                 0, 0);
@@ -333,3 +333,11 @@ static void r_pos(RSFD rfd, double  *current, double  *total)
     *current = (double) mrfd->cur;
     *total = (double) info->hits;
 }
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+