chiark / gitweb /
Use right test vector file name.
[mLib] / env.c
diff --git a/env.c b/env.c
index d648b79b153c61727c3c3c6abb0e5ca93dfe9d94..985dc526b79991ef7e53f0aafc1ab534c2b83108 100644 (file)
--- a/env.c
+++ b/env.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: env.c,v 1.2 2000/06/17 10:39:00 mdw Exp $
+ * $Id: env.c,v 1.4 2001/01/25 21:14:26 mdw Exp $
  *
  * Fiddling with environment variables
  *
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: env.c,v $
+ * Revision 1.4  2001/01/25 21:14:26  mdw
+ * Nowadays, @SYM_LEN@ doesn't include the terminating null, so revise the
+ * buffer-usage calculation.
+ *
+ * Revision 1.3  2001/01/20 11:48:10  mdw
+ * Use new @SYM_LEN@ macro for name lengths.
+ *
  * Revision 1.2  2000/06/17 10:39:00  mdw
  * Add support for arena management.
  *
@@ -174,7 +181,7 @@ char **env_export(sym_table *t)
 
   for (sym_mkiter(&i, t); (v = sym_next(&i)) != 0; ) {
     n++;
-    sz += strlen(SYM_NAME(v)) + strlen(v->v) + 2;
+    sz += SYM_LEN(v) + strlen(v->v) + 2;
   }
 
   /* --- Allocate the big chunk of memory --- */