by Alexandros Kostopoulos <akostop@inaccessnetworks.com>
git-svn-id: http://opkg.googlecode.com/svn/trunk@138
e8e0d7a0-c8d9-11dd-a880-
a1081c7ac358
int len = question_len;
va_list ap;
char *response;
- va_start(ap, format);
do {
if (question == NULL || len > question_len) {
question = realloc(question, len + 1);
question_len = len;
}
+
+ va_start(ap, format);
len = vsnprintf(question,question_len,format,ap);
+ va_end(ap);
} while (len > question_len);
response = strdup(opkg_cb_response(question));
str_chomp(response);