diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-03-19 09:13:01 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-03-19 09:13:01 +0000 |
commit | cad5364599eb5062d59e0c397ed638ddd61a8d5d (patch) | |
tree | a318d0f03aa076c74b576ea45dc543a5669e8e91 /libbb/bb_asprintf.c | |
parent | e01f9662a5bd5d91be4f6b3941b57fff73cd5af1 (diff) | |
download | busybox-w32-cad5364599eb5062d59e0c397ed638ddd61a8d5d.tar.gz busybox-w32-cad5364599eb5062d59e0c397ed638ddd61a8d5d.tar.bz2 busybox-w32-cad5364599eb5062d59e0c397ed638ddd61a8d5d.zip |
Major coreutils update.
Diffstat (limited to 'libbb/bb_asprintf.c')
-rw-r--r-- | libbb/bb_asprintf.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libbb/bb_asprintf.c b/libbb/bb_asprintf.c index 9a71be7f5..7075b46de 100644 --- a/libbb/bb_asprintf.c +++ b/libbb/bb_asprintf.c | |||
@@ -5,17 +5,18 @@ | |||
5 | #include <stdlib.h> | 5 | #include <stdlib.h> |
6 | #include <stdio.h> | 6 | #include <stdio.h> |
7 | #include <stdarg.h> | 7 | #include <stdarg.h> |
8 | |||
9 | |||
10 | #include "libbb.h" | 8 | #include "libbb.h" |
11 | 9 | ||
12 | 10 | void bb_xasprintf(char **string_ptr, const char *format, ...) | |
13 | void bb_asprintf(char **string_ptr, const char *format, ...) | ||
14 | { | 11 | { |
15 | va_list p; | 12 | va_list p; |
13 | int r; | ||
14 | |||
15 | va_start(p, format); | ||
16 | r = vasprintf(string_ptr, format, p); | ||
17 | va_end(p); | ||
16 | 18 | ||
17 | va_start(p, format); | 19 | if (r < 0) { |
18 | if(vasprintf(string_ptr, format, p)<0) | 20 | bb_perror_msg_and_die("bb_xasprintf"); |
19 | error_msg_and_die(memory_exhausted); | 21 | } |
20 | va_end(p); | ||
21 | } | 22 | } |