diff options
author | Marcus Brinkmann <[email protected]> | 2010-11-17 02:11:05 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2010-11-17 02:11:05 +0000 |
commit | f1527436c422614b6761730e43ea26e35814f8a3 (patch) | |
tree | 835e15916b45bbe91e338ee56fc5390a9b0cf18a /src/vasprintf.c | |
parent | 2010-11-15 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-f1527436c422614b6761730e43ea26e35814f8a3.tar.gz gpgme-f1527436c422614b6761730e43ea26e35814f8a3.zip |
2010-11-17 Marcus Brinkmann <[email protected]>
* vasprintf.c (int_vasprintf) [HAVE_W32CE_SYSTEM]: Just use a
fixed size buffer, as va_copy is not easy to fake.
Diffstat (limited to 'src/vasprintf.c')
-rw-r--r-- | src/vasprintf.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/vasprintf.c b/src/vasprintf.c index 77113a31..03d38ff2 100644 --- a/src/vasprintf.c +++ b/src/vasprintf.c @@ -51,6 +51,19 @@ int_vasprintf (result, format, args) const char *format; va_list *args; { +#ifdef HAVE_W32CE_SYSTEM + /* No va_copy and the replacement above doesn't work. */ +#define MAX_STRLEN 256 + *result = malloc (MAX_STRLEN); + if (*result != NULL) + { + int res = _vsnprintf (*result, MAX_STRLEN, format, *args); + (*result)[MAX_STRLEN - 1] = '\0'; + return res; + } + else + return 0; +#else const char *p = format; /* Add one to make sure that it is never zero, which might cause malloc to return NULL. */ @@ -133,6 +146,7 @@ int_vasprintf (result, format, args) return vsprintf (*result, format, *args); else return 0; +#endif } int |