tech@mandoc.bsd.lv
 help / color / mirror / Atom feed
* compat_vasprintf.c: use va_copy
@ 2015-03-20 14:36 Christian Neukirchen
  2015-03-20 15:45 ` Ingo Schwarze
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Neukirchen @ 2015-03-20 14:36 UTC (permalink / raw)
  To: tech

Hi,

When building CVS HEAD on Linux x86_64/glibc, the vasprintf check
fails when -D_GNU_SOURCE is not passed, and mdocml falls back to
compat_vasprintf.c.  This version of vasprintf.c segfaults on glibc,
because the same va_list is used twice.  Probably affects other
architectures too.

The solution is to use va_copy to get a second va_list.

--- compat_vasprintf.c
+++ compat_vasprintf.c
@@ -38,9 +38,13 @@ vasprintf(char **ret, const char *format, va_list ap)
 {
 	char	 buf[2];
 	int	 sz;
+	va_list	 ap2;
 
-	if ((sz = vsnprintf(buf, sizeof(buf), format, ap)) != -1 &&
-	    (*ret = malloc(sz + 1)) != NULL) {
+	va_copy(ap2, ap);
+	sz = vsnprintf(buf, sizeof(buf), format, ap2);
+	va_end(ap2);
+
+	if (sz != -1 && (*ret = malloc(sz + 1)) != NULL) {
 		if (vsnprintf(*ret, sz + 1, format, ap) == sz)
 			return(sz);
 		free(*ret);

cu,
-- 
Christian Neukirchen  <chneukirchen@gmail.com>  http://chneukirchen.org
--
 To unsubscribe send an email to tech+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-03-20 15:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-20 14:36 compat_vasprintf.c: use va_copy Christian Neukirchen
2015-03-20 15:45 ` Ingo Schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).