change interface to bb_xasprintf() - more perfect for me.
ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers reduce 100 bytes don't care in sum
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright (C) 2002 Vladimir Oleynik <dzo@simtreas.ru>
|
||||
Copyright (C) 2002,2005 Vladimir Oleynik <dzo@simtreas.ru>
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
@ -7,16 +7,18 @@
|
||||
#include <stdarg.h>
|
||||
#include "libbb.h"
|
||||
|
||||
void bb_xasprintf(char **string_ptr, const char *format, ...)
|
||||
char *bb_xasprintf(const char *format, ...)
|
||||
{
|
||||
va_list p;
|
||||
int r;
|
||||
char *string_ptr;
|
||||
|
||||
va_start(p, format);
|
||||
r = vasprintf(string_ptr, format, p);
|
||||
r = vasprintf(&string_ptr, format, p);
|
||||
va_end(p);
|
||||
|
||||
if (r < 0) {
|
||||
bb_perror_msg_and_die("bb_xasprintf");
|
||||
}
|
||||
return string_ptr;
|
||||
}
|
||||
|
Reference in New Issue
Block a user