Work on xpath-like queries
[idzebra-moved-to-github.git] / rset / rstemp.c
index 1d39687..173af35 100644 (file)
@@ -3,7 +3,7 @@
  * All rights reserved.
  * Sebastian Hammer, Adam Dickmeiss
  *
- * $Id: rstemp.c,v 1.30 2002-03-20 20:24:30 adam Exp $
+ * $Id: rstemp.c,v 1.32 2002-05-03 13:46:33 adam Exp $
  */
 
 #include <fcntl.h>
@@ -138,7 +138,10 @@ static void r_flush (RSFD rfd, int mk)
 #if HAVE_MKSTEMP
         char template[1024];
 
-        sprintf (template, "%s/zrsXXXXXX", info->temp_path);
+        if (info->temp_path)
+            sprintf (template, "%s/zrsXXXXXX", info->temp_path);
+        else
+            sprintf (template, "zrsXXXXXX");
 
         info->fd = mkstemp (template);