summaryrefslogtreecommitdiff
path: root/source3/lib/xfile.c
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2002-05-17 14:51:22 +0000
committerJim McDonough <jmcd@samba.org>2002-05-17 14:51:22 +0000
commitc7523c57512258007f0ac5271697fc6a9f4618d6 (patch)
tree43ab98ce3e97f2a910c15ef76978bb46a8471407 /source3/lib/xfile.c
parent31cda568c05624ef5e7fd2970c5f2733e67eedc3 (diff)
downloadsamba-c7523c57512258007f0ac5271697fc6a9f4618d6.tar.gz
samba-c7523c57512258007f0ac5271697fc6a9f4618d6.tar.bz2
samba-c7523c57512258007f0ac5271697fc6a9f4618d6.zip
Fix usage of va_list passed as an arg. Use __va_copy before using it
when it exists. (This used to be commit 85ab07bdc1b2ce7b2c1b8197fad45124b1460dca)
Diffstat (limited to 'source3/lib/xfile.c')
-rw-r--r--source3/lib/xfile.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/lib/xfile.c b/source3/lib/xfile.c
index 00ea6e5cac..7b97d329ae 100644
--- a/source3/lib/xfile.c
+++ b/source3/lib/xfile.c
@@ -187,7 +187,13 @@ int x_vfprintf(XFILE *f, const char *format, va_list ap)
{
char *p;
int len, ret;
- len = vasprintf(&p, format, ap);
+ va_list ap2;
+#if defined(HAVE_VA_COPY)
+ __va_copy(ap2, ap);
+#else
+ ap2 = ap;
+#endif
+ len = vasprintf(&p, format, ap2);
if (len <= 0) return len;
ret = x_fwrite(p, 1, len, f);
SAFE_FREE(p);