* deprecation.c (scm_c_issue_deprecation_warning_fmt): Add va_end.
authorKevin Ryde <user42@zip.com.au>
Wed, 9 Jul 2003 22:08:13 +0000 (22:08 +0000)
committerKevin Ryde <user42@zip.com.au>
Wed, 9 Jul 2003 22:08:13 +0000 (22:08 +0000)
* list.c (scm_list_n): Ditto.

libguile/list.c

index f1552c5..07a0d0d 100644 (file)
@@ -94,6 +94,7 @@ scm_list_n (SCM elt, ...)
       pos = SCM_CDRLOC (*pos);
       elt = va_arg (foo, SCM);
     }
+  va_end (foo);
   return answer;
 }