Deleted Added
full compact
vswprintf.c (142183) vswprintf.c (178287)
1/* $OpenBSD: vasprintf.c,v 1.4 1998/06/21 22:13:47 millert Exp $ */
2
3/*
4 * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 17 unchanged lines hidden (view full) ---

26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31#if 0
32__FBSDID("FreeBSD: src/lib/libc/stdio/vasprintf.c,v 1.16 2002/08/21 16:19:57 mike Exp ");
33#endif
1/* $OpenBSD: vasprintf.c,v 1.4 1998/06/21 22:13:47 millert Exp $ */
2
3/*
4 * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 17 unchanged lines hidden (view full) ---

26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31#if 0
32__FBSDID("FreeBSD: src/lib/libc/stdio/vasprintf.c,v 1.16 2002/08/21 16:19:57 mike Exp ");
33#endif
34__FBSDID("$FreeBSD: head/lib/libc/stdio/vswprintf.c 142183 2005-02-21 19:41:44Z fjoe $");
34__FBSDID("$FreeBSD: head/lib/libc/stdio/vswprintf.c 178287 2008-04-17 22:17:54Z jhb $");
35
36#include <errno.h>
37#include <stdio.h>
38#include <stdlib.h>
39#include <wchar.h>
40#include "local.h"
41
42int
43vswprintf(wchar_t * __restrict s, size_t n, const wchar_t * __restrict fmt,
44 __va_list ap)
45{
46 static const mbstate_t initial;
47 mbstate_t mbs;
48 FILE f;
35
36#include <errno.h>
37#include <stdio.h>
38#include <stdlib.h>
39#include <wchar.h>
40#include "local.h"
41
42int
43vswprintf(wchar_t * __restrict s, size_t n, const wchar_t * __restrict fmt,
44 __va_list ap)
45{
46 static const mbstate_t initial;
47 mbstate_t mbs;
48 FILE f;
49 struct __sFILEX ext;
50 char *mbp;
51 int ret, sverrno;
52 size_t nwc;
53
54 if (n == 0) {
55 errno = EINVAL;
56 return (-1);
57 }
58
59 f._file = -1;
60 f._flags = __SWR | __SSTR | __SALC;
61 f._bf._base = f._p = (unsigned char *)malloc(128);
62 if (f._bf._base == NULL) {
63 errno = ENOMEM;
64 return (-1);
65 }
66 f._bf._size = f._w = 127; /* Leave room for the NUL */
49 char *mbp;
50 int ret, sverrno;
51 size_t nwc;
52
53 if (n == 0) {
54 errno = EINVAL;
55 return (-1);
56 }
57
58 f._file = -1;
59 f._flags = __SWR | __SSTR | __SALC;
60 f._bf._base = f._p = (unsigned char *)malloc(128);
61 if (f._bf._base == NULL) {
62 errno = ENOMEM;
63 return (-1);
64 }
65 f._bf._size = f._w = 127; /* Leave room for the NUL */
67 f._extra = &ext;
68 INITEXTRA(&f);
66 f._orientation = 0;
67 memset(&f._mbstate, 0, sizeof(mbstate_t));
69 ret = __vfwprintf(&f, fmt, ap);
70 if (ret < 0) {
71 sverrno = errno;
72 free(f._bf._base);
73 errno = sverrno;
74 return (-1);
75 }
76 *f._p = '\0';

--- 20 unchanged lines hidden ---
68 ret = __vfwprintf(&f, fmt, ap);
69 if (ret < 0) {
70 sverrno = errno;
71 free(f._bf._base);
72 errno = sverrno;
73 return (-1);
74 }
75 *f._p = '\0';

--- 20 unchanged lines hidden ---